linux 下time函数
Posted hostid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 下time函数相关的知识,希望对你有一定的参考价值。
Linux下Time相关函数
1、MKTIME
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 */
};
//int tm_sec 代表目前秒数,正常范围为0-59,但允许至61秒
//int tm_min 代表目前分数,范围0-59
//int tm_hour 从午夜算起的时数,范围为0-23
//int tm_mday 目前月份的日数,范围01-31
//int tm_mon 代表目前月份,从一月算起,范围从0-11
//int tm_year 从1900 年算起至今的年数
//int tm_wday 一星期的日数,从星期一算起,范围为0-6
//int tm_yday 从今年1月1日算起至今的天数,范围为0-365
//int tm_isdst 日光节约时间的旗标
2、time
3、ctime
4、localtime
5、date
以上是关于linux 下time函数的主要内容,如果未能解决你的问题,请参考以下文章
linux下常用的几个时间函数:time,gettimeofday,clock_gettime,_ftime
A 8b Time-Interleaved Time-Domain ADC with Input-Independent Background Timing Skew Calibration(代码片段