2005-04-21 16:53:53 +02:00
|
|
|
/* The <time.h> header is used by the procedures that deal with time.
|
|
|
|
* Handling time is surprisingly complicated, what with GMT, local time
|
|
|
|
* and other factors. Although the Bishop of Ussher (1581-1656) once
|
|
|
|
* calculated that based on the Bible, the world began on 12 Oct. 4004 BC
|
|
|
|
* at 9 o'clock in the morning, in the UNIX world time begins at midnight,
|
|
|
|
* 1 Jan. 1970 GMT. Before that, all was NULL and (void).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TIME_H
|
|
|
|
#define _TIME_H
|
|
|
|
|
2010-07-22 12:03:31 +02:00
|
|
|
#include <sys/null.h>
|
|
|
|
|
2008-11-19 13:26:10 +01:00
|
|
|
#define CLOCKS_PER_SEC 60
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#ifdef _POSIX_SOURCE
|
|
|
|
#define CLK_TCK CLOCKS_PER_SEC /* obsolescent mame for CLOCKS_PER_SEC */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _SIZE_T
|
|
|
|
#define _SIZE_T
|
|
|
|
typedef unsigned int size_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _TIME_T
|
|
|
|
#define _TIME_T
|
|
|
|
typedef long time_t; /* time in sec since 1 Jan 1970 0000 GMT */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _CLOCK_T
|
|
|
|
#define _CLOCK_T
|
|
|
|
typedef long clock_t; /* time in ticks since process started */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct tm {
|
|
|
|
int tm_sec; /* seconds after the minute [0, 59] */
|
|
|
|
int tm_min; /* minutes after the hour [0, 59] */
|
|
|
|
int tm_hour; /* hours since midnight [0, 23] */
|
|
|
|
int tm_mday; /* day of the month [1, 31] */
|
|
|
|
int tm_mon; /* months since January [0, 11] */
|
|
|
|
int tm_year; /* years since 1900 */
|
|
|
|
int tm_wday; /* days since Sunday [0, 6] */
|
|
|
|
int tm_yday; /* days since January 1 [0, 365] */
|
|
|
|
int tm_isdst; /* Daylight Saving Time flag */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern char *tzname[];
|
|
|
|
|
|
|
|
/* Function Prototypes. */
|
2011-01-28 12:35:02 +01:00
|
|
|
#ifndef _MINIX_ANSI_H
|
|
|
|
#include <minix/ansi.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
_PROTOTYPE( clock_t clock, (void) );
|
|
|
|
_PROTOTYPE( double difftime, (time_t _time1, time_t _time0) );
|
|
|
|
_PROTOTYPE( time_t mktime, (struct tm *_timeptr) );
|
|
|
|
_PROTOTYPE( time_t time, (time_t *_timeptr) );
|
|
|
|
_PROTOTYPE( char *asctime, (const struct tm *_timeptr) );
|
2010-03-09 23:10:58 +01:00
|
|
|
_PROTOTYPE( char *asctime_r, (const struct tm *_timeptr, char *buf) );
|
|
|
|
_PROTOTYPE( char *ctime, (const time_t *_timer) );
|
|
|
|
_PROTOTYPE( char *ctime_r, (const time_t *_timer, char *buf) );
|
2005-04-21 16:53:53 +02:00
|
|
|
_PROTOTYPE( struct tm *gmtime, (const time_t *_timer) );
|
2010-03-09 23:10:58 +01:00
|
|
|
_PROTOTYPE( struct tm *gmtime_r, (const time_t *_timer,struct tm *tmp) );
|
2005-04-21 16:53:53 +02:00
|
|
|
_PROTOTYPE( struct tm *localtime, (const time_t *_timer) );
|
2010-01-21 11:16:05 +01:00
|
|
|
_PROTOTYPE( struct tm *localtime_r, (const time_t *const timep,
|
|
|
|
struct tm *tmp) );
|
2005-04-21 16:53:53 +02:00
|
|
|
_PROTOTYPE( size_t strftime, (char *_s, size_t _max, const char *_fmt,
|
|
|
|
const struct tm *_timep) );
|
2010-07-06 13:59:19 +02:00
|
|
|
_PROTOTYPE( char *strptime, (const char *buf, const char *format,
|
2010-06-22 23:42:49 +02:00
|
|
|
struct tm *timeptr) );
|
2010-07-06 13:59:19 +02:00
|
|
|
_PROTOTYPE( time_t timegm, (struct tm * const tmp) );
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#ifdef _POSIX_SOURCE
|
|
|
|
_PROTOTYPE( void tzset, (void) );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MINIX
|
|
|
|
_PROTOTYPE( int stime, (time_t *_top) );
|
|
|
|
#endif
|
|
|
|
|
2005-06-01 11:34:37 +02:00
|
|
|
extern long timezone;
|
|
|
|
|
2009-08-16 00:14:48 +02:00
|
|
|
#ifdef _POSIX_SOURCE
|
|
|
|
struct timespec
|
|
|
|
{
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
|
|
|
|
|
|
|
int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
|
|
|
|
#endif
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif /* _TIME_H */
|