home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / include / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  158 b   |  12 lines

  1. struct tm { /* see ctime(3) */
  2.     int    tm_sec;
  3.     int    tm_min;
  4.     int    tm_hour;
  5.     int    tm_mday;
  6.     int    tm_mon;
  7.     int    tm_year;
  8.     int    tm_wday;
  9.     int    tm_yday;
  10.     int    tm_isdst;
  11. };
  12.