typedef struct switch_time_exp_t {
/** microseconds past tm_sec */
int32_t tm_usec;
/** (0-61) seconds past tm_min */
int32_t tm_sec;
/** (0-59) minutes past tm_hour */
int32_t tm_min;
/** (0-23) hours past midnight */
int32_t tm_hour;
/** (1-31) day of the month */
int32_t tm_mday;
/** (0-11) month of the year */
int32_t tm_mon;
/** year since 1900 */
int32_t tm_year;
/** (0-6) days since sunday */
int32_t tm_wday;
/** (0-365) days since jan 1 */
int32_t tm_yday;
/** daylight saving time */
int32_t tm_isdst;
/** seconds east of UTC */
int32_t tm_gmtoff;
} switch_time_exp_t;
freeswitch时间结构体 switch_time_exp_t
时间结构解析
最新推荐文章于 2024-12-05 10:26:54 发布
本文介绍了一个名为switch_time_exp_t的时间结构体,该结构体用于精确表示时间的各个方面,包括微秒、秒、分钟、小时等,并涵盖了年份、月份、日期等更广泛的日期范围。
1178

被折叠的 条评论
为什么被折叠?



