time_t和tm互换

来源:互联网 发布:python基础教程 chm 编辑:程序博客网 时间:2024/04/30 22:47
time_t mktime(struct tm *tm);
struct tm *gmtime(const time_t *timep);
struct tm *gmtime_r(const time_t *timep, struct tm *result);
struct tm *localtime(const time_t *timep);
struct tm *localtime_r(const time_t *timep, struct tm *result);
------------------------------------
Other:
time_t timelocal(struct tm *tm);
time_t timegm(struct tm *tm);
原创粉丝点击