Si prosegue con le modifiche per l'inclusione degli esempi di codice.
[gapil.git] / listati / tm.h
1 struct tm {
2         int     tm_sec;         /* seconds */
3         int     tm_min;         /* minutes */
4         int     tm_hour;        /* hours */
5         int     tm_mday;        /* day of the month */
6         int     tm_mon;         /* month */
7         int     tm_year;        /* year */
8         int     tm_wday;        /* day of the week */
9         int     tm_yday;        /* day in the year */
10         int     tm_isdst;       /* daylight saving time */
11         long int tm_gmtoff;     /* Seconds east of UTC.  */
12         const char *tm_zone;    /* Timezone abbreviation.  */
13 };