Pristine Ack-5.5
[Ack-5.5.git] / include / _tail_cc / time.h
1 /* $Id: time.h,v 1.2 1994/06/24 11:05:41 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6
7 #ifndef _TIME_H
8 #define _TIME_H
9
10 struct tm {
11   int tm_sec;                   /* seconds after the minute [0, 59] */
12   int tm_min;                   /* minutes after the hour [0, 59] */
13   int tm_hour;                  /* hours since midnight [0, 23] */
14   int tm_mday;                  /* day of the month [1, 31] */
15   int tm_mon;                   /* months since January [0, 11] */
16   int tm_year;                  /* years since 1900 */
17   int tm_wday;                  /* days since Sunday [0, 6] */
18   int tm_yday;                  /* days since January 1 [0, 365] */
19   int tm_isdst;                 /* Daylight Saving Time flag */
20 };
21
22 extern struct tm *gmtime();
23 extern struct tm *localtime();
24 extern char *asctime();
25 extern char *ctime();
26
27 #endif /* _TIME_H */