Структура, описывающая значение даты и времени
#include <sys/timeb.h>struct timeb {time_t time; /* seconds since Jan 1, 1970 UTC */uint16_t millitm; /* milliseconds */int16_t timezone; /* difference in minutes from UTC */int16_t dstflag; /* nonzero if daylight savings time */};
Структура timeb содержит следующие поля:
POSIX 1003.1 X/Open Systems Interfaces Extension
Предыдущий раздел: Описание API системной библиотеки