/*************************************************************************** * FILE: time.h/ctime (Time functions) * * ========================================================================= * * Open Watcom Project * * Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved. * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. * * This file is automatically generated. Do not edit directly. * * ========================================================================= * * Description: This header is part of the C/C++ standard library. It * declares facilities for manipulating calendar dates and * times. ***************************************************************************/ #ifndef _TIME_H_INCLUDED #define _TIME_H_INCLUDED #ifndef _ENABLE_AUTODEPEND #pragma read_only_file; #endif #ifdef __cplusplus #include // C99 types in time.h #ifndef _CLOCK_T_DEFINED #define _CLOCK_T_DEFINED using std::clock_t; #endif #ifndef _SIZE_T_DEFINED #define _SIZE_T_DEFINED #define _SIZE_T_DEFINED_ using std::size_t; #endif #ifndef _TIME_T_DEFINED #define _TIME_T_DEFINED #define _TIME_T_DEFINED_ using std::time_t; #endif using std::tm; // C99 functions in time.h using std::asctime; using std::clock; using std::ctime; using std::difftime; using std::gmtime; using std::localtime; using std::mktime; using std::strftime; using std::time; #else /* __cplusplus not defined */ #ifndef _COMDEF_H_INCLUDED #include <_comdef.h> #endif #ifdef _M_IX86 #pragma pack( __push, 1 ) #else #pragma pack( __push, 8 ) #endif #ifndef _WCHAR_T_DEFINED #define _WCHAR_T_DEFINED #define _WCHAR_T_DEFINED_ typedef unsigned short wchar_t; #endif #ifndef _SIZE_T_DEFINED #define _SIZE_T_DEFINED #define _SIZE_T_DEFINED_ typedef unsigned size_t; typedef size_t _w_size_t; #endif #ifndef NULL #ifdef __cplusplus #if !defined(_M_I86) || defined(__SMALL__) || defined(__MEDIUM__) #define NULL 0 #else #define NULL 0L #endif #else #define NULL ((void *)0) #endif #endif #ifndef _TIME_T_DEFINED #define _TIME_T_DEFINED #define _TIME_T_DEFINED_ typedef unsigned long time_t; #endif #ifndef _CLOCK_T_DEFINED #define _CLOCK_T_DEFINED typedef unsigned long clock_t; #endif #if defined(__STDC_WANT_LIB_EXT1__) && __STDC_WANT_LIB_EXT1__ == 1 #ifndef _ERRNO_T_DEFINED #define _ERRNO_T_DEFINED typedef int errno_t; #endif #ifndef _RSIZE_T_DEFINED #define _RSIZE_T_DEFINED typedef size_t rsize_t; #endif #endif /* Safer C Library */ #define CLOCKS_PER_SEC 1000 #define CLK_TCK 1000 struct tm { int tm_sec; /* seconds after the minute -- [0,61] */ int tm_min; /* minutes after the hour -- [0,59] */ int tm_hour; /* hours after 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 Savings Time flag */ }; _WCRTLINK extern char *asctime( const struct tm *__timeptr ); _WCRTLINK extern clock_t clock( void ); _WCRTLINK extern char *ctime( const time_t *__timer ); _WMRTLINK extern double difftime( time_t __t1, time_t __t0 ); _WCRTLINK extern struct tm *gmtime( const time_t *__timer ); _WCRTLINK extern struct tm *localtime( const time_t *__timer ); _WCRTLINK extern time_t mktime( struct tm *__timeptr ); _WCRTLINK extern size_t strftime( char *__s, size_t __maxsiz, const char *__fmt, const struct tm *__tp ); _WCRTLINK extern time_t time( time_t *__timer ); _WCRTLINK extern size_t wcsftime( wchar_t *, size_t, const wchar_t *, const struct tm * ); #define difftime( t1, t0 ) ( ( double ) ( t1 ) - ( double ) ( t0 ) ) _WCRTLINK extern wchar_t *_wasctime( const struct tm * ); _WCRTLINK extern wchar_t *_wctime( const time_t * ); _WCRTLINK extern wchar_t *_wstrdate( wchar_t *__buf ); _WCRTLINK extern wchar_t *_wstrtime( wchar_t *__buf ); _WCRTLINK extern size_t _wstrftime_ms( wchar_t *, size_t, const char *, const struct tm * ); #if !defined(NO_EXT_KEYS) /* extensions enabled */ _WCRTLINK extern char *_asctime( const struct tm *__timeptr, char *__buf ); _WCRTLINK extern char *_ctime( const time_t *__timer, char *__buf ); _WCRTLINK extern struct tm *_gmtime( const time_t *__timer, struct tm *__tmbuf ); _WCRTLINK extern struct tm *_localtime( const time_t *__timer, struct tm *__tmbuf ); _WCRTLINK extern char *_strdate( char *__buf ); _WCRTLINK extern char *_strtime( char *__buf ); _WCRTLINK extern wchar_t *__wctime( const time_t *, wchar_t * ); _WCRTLINK extern wchar_t *__wasctime( const struct tm *, wchar_t * ); #endif /* extensions enabled */ #if defined(__STDC_WANT_LIB_EXT1__) && __STDC_WANT_LIB_EXT1__ == 1 _WCRTLINK extern errno_t asctime_s( char *__s, rsize_t __maxsize, const struct tm *__timeptr ); _WCRTLINK extern errno_t ctime_s( char *__s, rsize_t __maxsize, const time_t *__timer ); _WCRTLINK extern struct tm *gmtime_s( const time_t * __restrict __timer, struct tm * __restrict __result ); _WCRTLINK extern struct tm *localtime_s( const time_t * __restrict __timer, struct tm * __restrict __t ); _WCRTLINK extern errno_t _wasctime_s( wchar_t *__s, rsize_t __maxsize, const struct tm *__timeptr ); _WCRTLINK extern errno_t _wctime_s( wchar_t *__s, rsize_t __maxsize, const time_t *__timer ); #endif /* Safer C Library */ _WCRTLINK extern void tzset( void ); _WCRTLINK extern char **__get_tzname_ptr( void ); #if defined(__FUNCTION_DATA_ACCESS) #define tzname (*__get_tzname_ptr()) #elif defined(__SW_BR) || defined(_RTDLL) #define tzname tzname_br #endif _WCRTDATA extern char *tzname[2]; /* time zone names */ _WCRTLINK extern long *__get_timezone_ptr( void ); _WCRTLINK extern int *__get_daylight_ptr( void ); #if defined( __FUNCTION_DATA_ACCESS ) #define timezone (*__get_timezone_ptr()) #define daylight (*__get_daylight_ptr()) #elif defined( __SW_BR ) || defined( _RTDLL ) #define timezone timezone_br #define daylight daylight_br #endif _WCRTDATA extern long timezone; /* # of seconds from GMT */ _WCRTDATA extern int daylight; /* d.s.t. indicator */ #pragma pack( __pop ) #endif /* __cplusplus not defined */ #endif