home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / vmsisode / vmsisode80_tar.Z / vmsisode80_tar / sockit / gccinclude / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-24  |  238 b   |  18 lines

  1. /*
  2.  *    VAX-11 "C" runtime compatible time definitions
  3.  */
  4.  
  5. struct tm {
  6.     int    tm_sec;
  7.     int    tm_min;
  8.     int    tm_hour;
  9.     int    tm_mday;
  10.     int    tm_mon;
  11.     int    tm_year;
  12.     int    tm_wday;
  13.     int    tm_yday;
  14.     int    tm_isdst;
  15. };            
  16.  
  17. extern struct tm *localtime();
  18.