|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 4.0.2
3: * Copyright (c) 1982, 1992 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * time.h
8: * COHERENT time function header.
9: */
10:
11: #ifndef TIME_H
12: #define TIME_H TIME_H
13:
14: #include <sys/types.h>
15:
16: struct tm {
17: int tm_sec;
18: int tm_min;
19: int tm_hour;
20: int tm_mday;
21: int tm_mon;
22: int tm_year;
23: int tm_wday;
24: int tm_yday;
25: int tm_isdst;
26: };
27:
28: extern char *asctime();
29: extern char *ctime();
30: extern struct tm *gmtime();
31: extern struct tm *localtime();
32: extern time_t time();
33: extern long timezone;
34: extern char *tzname[2];
35:
36: #endif
37:
38: /* end of time.h */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.