1: /*
   2:  * Copyright (c) 1983, 1987 Regents of the University of California.
   3:  * All rights reserved.  The Berkeley software License Agreement
   4:  * specifies the terms and conditions for redistribution.
   5:  *
   6:  *	@(#)time.h	1.3 (2.11BSD) 96/7/10
   7:  */
   8: 
   9: #include    <sys/types.h>       /* for time_t */
  10: 
  11: /*
  12:  * Structure returned by gmtime and localtime calls (see ctime(3)).
  13:  */
  14: struct tm {
  15:     int tm_sec;
  16:     int tm_min;
  17:     int tm_hour;
  18:     int tm_mday;
  19:     int tm_mon;
  20:     int tm_year;
  21:     int tm_wday;
  22:     int tm_yday;
  23:     int tm_isdst;
  24:     long    tm_gmtoff;
  25:     char    *tm_zone;
  26: };
  27: 
  28: extern  struct tm *gmtime(), *localtime();
  29: extern  char *asctime(), *ctime();
  30: extern  time_t  time();

Defined struct's

tm defined in line 14; used 142 times

Usage of this include

time.h used 56 times
Last modified: 1996-07-11
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2468
Valid CSS Valid XHTML 1.0 Strict