struct timeval{
long int tv_sec; // 秒数 同time(NULL) 的返回值
long int tv_usec; // 微秒数 10 的6次方
};
struct timezone{
int tz_minuteswest;/*格林威治时间往西方的时差*/
int tz_dsttime;/*DST 时间的修正方式*/
};
#include <stdio.h>
#include <sys/time.h> int main()
{
struct timeval tv;
struct timezone tz; int res = gettimeofday(&tv, &tz);
printf("res = %d\n", res);
printf("tv.tv_sec = %ld, tv.tv_usec = %ld\n",
tv.tv_sec, tv.tv_usec); return ;
}