time.h

Go to the documentation of this file.
00001 #ifndef _TIME_H
00002 #define _TIME_H
00003 
00004 typedef unsigned long time_t;
00005 
00006 struct tm {
00007         int tm_sec;     /* seconds */
00008         int tm_min;     /* minutes */
00009         int tm_hour;    /* hours */
00010         int tm_mday;    /* day of the month */
00011         int tm_mon;     /* month */
00012         int tm_year;    /* year */
00013         int tm_wday;    /* day of the week */
00014         int tm_yday;    /* day in the year */
00015         int tm_isdst;   /* daylight saving time */
00016 };
00017 
00018 extern time_t time ( time_t *t );
00019 
00020 extern time_t mktime ( struct tm *tm );
00021 
00022 #endif /* _TIME_H */

Generated on Tue Apr 6 20:01:09 2010 for gPXE by  doxygen 1.5.7.1