資源和工具
linux和C庫(kù)中time.h中重要的數(shù)據(jù)結(jié)構(gòu)
struct timeval
{
__time_t tv_sec; /* Seconds. */
__suseconds_t tv_usec; /* Microseconds. */
};
struct timezone
{
int tz_minuteswest沛励;
int tz_dsttime蛾方;
}
struct tm{
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
};