码迷,mamicode.com
首页 > 编程语言 > 详细

C语言的时间函数

时间:2014-05-15 16:40:30      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

---恢复内容开始---

bubuko.com,布布扣
下面是C语言的获取本地时间和构造时间进行格式化时间显示输出的相关函数:
This page is part of release 3.35 of the Linux man-pages project. #include <time.h> char *asctime(const struct tm *tm); char *asctime_r(const struct tm *tm, char *buf); char *ctime(const time_t *timep); char *ctime_r(const time_t *timep, char *buf); 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); time_t mktime(struct tm *tm); Broken-down time is stored in the structure tm which is defined in <time.h> as follows: struct tm { int tm_sec; /* seconds */ int tm_min; /* minutes */ int tm_hour; /* hours */ int tm_mday; /* day of the month */ int tm_mon; /* month */ int tm_year; /* year */ int tm_wday; /* day of the week */ int tm_yday; /* day in the year */ int tm_isdst; /* daylight saving time */ };
bubuko.com,布布扣

 

---恢复内容结束---

C语言的时间函数,布布扣,bubuko.com

C语言的时间函数

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/makefile/p/3726525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!