Si prosegue con le modifiche per l'inclusione degli esempi di codice.
[gapil.git] / listati / tm.h
diff --git a/listati/tm.h b/listati/tm.h
new file mode 100644 (file)
index 0000000..d4c9ee2
--- /dev/null
@@ -0,0 +1,13 @@
+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 */
+        long int tm_gmtoff;     /* Seconds east of UTC.  */
+        const char *tm_zone;    /* Timezone abbreviation.  */
+};