📄 utctime.h
字号:
/*- * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -