Last change
on this file since 6888aa2 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
559 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | time.h -- header for the time package
|
---|
4 | Version 1 -- 1988-01-14
|
---|
5 | =============================================================================
|
---|
6 | */
|
---|
7 |
|
---|
8 | struct tm {
|
---|
9 |
|
---|
10 | int tm_sec;
|
---|
11 | int tm_min;
|
---|
12 | int tm_hour;
|
---|
13 | int tm_mday;
|
---|
14 | int tm_mon;
|
---|
15 | int tm_year;
|
---|
16 | int tm_wday;
|
---|
17 | int tm_yday;
|
---|
18 | int tm_dst;
|
---|
19 | };
|
---|
20 |
|
---|
21 | extern struct tm *lgmtime(), *lcltime();
|
---|
22 | extern char *lctime(), *latime();
|
---|
23 | extern int ltzset();
|
---|
24 | extern long timezn;
|
---|
25 | extern int daylite;
|
---|
26 | extern char *ltzname[];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.