kern

view src/klibc/time.h @ 72:3941e82b07f2

- implemented syscalls: exit, waitpid, getppid - moved sys_whatever functions out of syscall.c into more reasonable files - putting all the definitions that must be synced with userland to include/kdef.h
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Oct 2011 07:45:56 +0300
parents e70b1ab9613e
children
line source
1 #ifndef _TIME_H_
2 #define _TIME_H_
4 typedef long time_t;
6 struct tm {
7 int tm_sec;
8 int tm_min;
9 int tm_hour;
10 int tm_mday;
11 int tm_mon;
12 int tm_year;
13 int tm_wday;
14 int tm_yday;
15 int tm_isdst;
16 };
18 time_t time(time_t *tp);
19 char *asctime(struct tm *tm);
20 char *asctime_r(struct tm *tm, char *buf);
22 time_t mktime(struct tm *tm);
23 struct tm *gmtime(time_t *tp);
24 struct tm *gmtime_r(time_t *tp, struct tm *tm);
26 /* non-standard helpers */
27 int day_of_year(int year, int mon, int day);
30 #endif /* _TIME_H_ */