-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTIME.H
41 lines (34 loc) · 1.14 KB
/
TIME.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef _TIME_H_
#define _TIME_H_
/* time.h voor hitech-c
* aanpassing 01/06
*/
#ifndef _TIME
typedef long time_t; /* for representing times in seconds */
struct tm {
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
};
#define _TIME
#endif _TIME
#define JIFFY (*(unsigned short *)0xfc9e) /* clock tick counter */
extern int time_zone; /* minutes WESTWARD of Greenwich */
/* this value defaults to 0 since with
operating systems like MS-DOS there is
no time zone information available */
extern time_t time(time_t *); /* seconds since 00:00:00 Jan 1 1970 */
extern char * asctime(struct tm *); /* converts struct tm to ascii time */
extern char * ctime(); /* current local time in ascii form */
extern struct tm * gmtime(); /* Universal time */
extern struct tm * localtime(); /* local time */
extern time_t timerset(time_t); /* set a timer in seconds */
extern int timeup(time_t); /* check if timer expired */
extern size_t strftime(char *s, size_t maxs, char *f, struct tm *t);
#endif /* _TIME_H_ */