Last change
on this file since 119 was 18, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
1.8 KB
|
Line | |
---|
1 | /* time.h (emx+gcc) */
|
---|
2 |
|
---|
3 | #ifndef _TIME_H
|
---|
4 | #define _TIME_H
|
---|
5 |
|
---|
6 | #if defined (__cplusplus)
|
---|
7 | extern "C" {
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | #if !defined (_SIZE_T)
|
---|
11 | #define _SIZE_T
|
---|
12 | typedef unsigned long size_t;
|
---|
13 | #endif
|
---|
14 |
|
---|
15 | #if !defined (NULL)
|
---|
16 | #if defined (__cplusplus)
|
---|
17 | #define NULL 0
|
---|
18 | #else
|
---|
19 | #define NULL ((void *)0)
|
---|
20 | #endif
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | #if !defined (_TIME_T)
|
---|
24 | #define _TIME_T
|
---|
25 | typedef unsigned long time_t;
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | #if !defined (_CLOCK_T)
|
---|
29 | #define _CLOCK_T
|
---|
30 | typedef long clock_t;
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | #if !defined (_TM)
|
---|
34 | #define _TM
|
---|
35 | struct tm /* cf. <emx/thread.h> */
|
---|
36 | {
|
---|
37 | int tm_sec; /* 0..59 */
|
---|
38 | int tm_min; /* 0..59 */
|
---|
39 | int tm_hour; /* 0..23 */
|
---|
40 | int tm_mday; /* 1..31 */
|
---|
41 | int tm_mon; /* 0..11 */
|
---|
42 | int tm_year; /* 0(:=1900).. */
|
---|
43 | int tm_wday; /* 0..6 */
|
---|
44 | int tm_yday; /* 0..365 */
|
---|
45 | int tm_isdst; /* 0 */
|
---|
46 | };
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | #if !defined (CLOCKS_PER_SEC)
|
---|
50 | #define CLOCKS_PER_SEC 100
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | char *asctime (__const__ struct tm *);
|
---|
54 | char *ctime (__const__ time_t *);
|
---|
55 | clock_t clock (void);
|
---|
56 | double difftime (time_t, time_t);
|
---|
57 | struct tm *gmtime (__const__ time_t *);
|
---|
58 | struct tm *localtime (__const__ time_t *);
|
---|
59 | time_t mktime (struct tm *);
|
---|
60 | size_t strftime (char *, size_t, __const__ char *, __const__ struct tm *);
|
---|
61 | time_t time (time_t *);
|
---|
62 |
|
---|
63 |
|
---|
64 | #if !defined (__STRICT_ANSI__)
|
---|
65 |
|
---|
66 | /* POSIX.1 */
|
---|
67 |
|
---|
68 | void tzset (void);
|
---|
69 |
|
---|
70 | #endif
|
---|
71 |
|
---|
72 |
|
---|
73 | #if !defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE)
|
---|
74 |
|
---|
75 | #if !defined (CLK_TCK)
|
---|
76 | #define CLK_TCK 100
|
---|
77 | #endif
|
---|
78 |
|
---|
79 | extern int daylight;
|
---|
80 | extern long timezone;
|
---|
81 | extern char *tzname[2];
|
---|
82 |
|
---|
83 | char *strptime (__const__ char *, __const__ char *, struct tm *);
|
---|
84 |
|
---|
85 | #endif
|
---|
86 |
|
---|
87 |
|
---|
88 | #if (!defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE)) \
|
---|
89 | || defined (_WITH_UNDERSCORE)
|
---|
90 |
|
---|
91 | extern int _daylight;
|
---|
92 | extern long _timezone;
|
---|
93 | extern char *_tzname[2];
|
---|
94 |
|
---|
95 | char *_strptime (__const__ char *, __const__ char *, struct tm *);
|
---|
96 | void _tzset (void);
|
---|
97 |
|
---|
98 | #endif
|
---|
99 |
|
---|
100 |
|
---|
101 | #if defined (__cplusplus)
|
---|
102 | }
|
---|
103 | #endif
|
---|
104 |
|
---|
105 | #endif /* not _TIME_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.