utctime.h

来自「RSA加密/解密算法源码 asn1c-0.9.12」· C头文件 代码 · 共 31 行

H
31
字号
/*- * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved. * Redistribution and modifications are permitted subject to BSD license. */#ifndef	_UTCTime_H_#define	_UTCTime_H_#include <OCTET_STRING.h>typedef OCTET_STRING_t UTCTime_t;  /* Implemented via OCTET STRING */extern asn_TYPE_descriptor_t asn_DEF_UTCTime;asn_struct_print_f UTCTime_print;asn_constr_check_f UTCTime_constraint;xer_type_encoder_f UTCTime_encode_xer;/*********************** * Some handy helpers. * ***********************/struct tm;	/* <time.h> *//* See asn_GT2time() in GeneralizedTime.h */time_t asn_UT2time(const UTCTime_t *, struct tm *_optional_tm4fill, int as_gmt);/* See asn_time2GT() in GeneralizedTime.h */UTCTime_t *asn_time2UT(UTCTime_t *__opt_ut, const struct tm *, int force_gmt);#endif	/* _UTCTime_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?