fields-tm 601 B

12345678910111213
  1. (* Ubuntu 17.10 /usr/include/i386-linux-gnu/bits/types/struct_tm.h: *)
  2. tm_sec*: int; (* Seconds. [0-60] (1 leap second) *)
  3. tm_min*: int; (* Minutes. [0-59] *)
  4. tm_hour*: int; (* Hours. [0-23] *)
  5. tm_mday*: int; (* Day. [1-31] *)
  6. tm_mon*: int; (* Month. [0-11] *)
  7. tm_year*: int; (* Year - 1900. *)
  8. tm_wday*: int; (* Day of week. [0-6] *)
  9. tm_yday*: int; (* Days in year.[0-365] *)
  10. tm_isdst*: int; (* DST. [-1/0/1] *)
  11. tm_gmtoff*: int; (* long int *) (* Seconds east of UTC *)
  12. tm_zone*: PtrSTR; (* Timezone abbreviation *)