Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Struct and function declarations for dealing with time.
41 #include <libc/machine/types.h> /* Get _CLOCK_T_ and _TIME_T_. */
46 #ifndef __clock_t_defined
47 typedef _CLOCK_T_ clock_t;
48 #define __clock_t_defined
51 #ifndef __time_t_defined
52 #ifndef _TIME_T_DEFINED
53 #define __time_t_defined
54 #define _TIME_T_DEFINED
55 typedef _TIME_T_ time_t;
56 #endif //__time_t_defined
57 #endif //_TIME_T_DEFINED
65 int tm_sec; /* seconds (0-59) */
66 int tm_min; /* minutes (0-59) */
67 int tm_hour; /* hours since midnight (0-23) */
68 int tm_mday; /* day of month (1-31) */
69 int tm_mon; /* month (0-11, January = 0) */
70 int tm_year; /* years since 1900 */
71 int tm_wday; /* day of week (0-6, Sunday = 0) */
72 int tm_yday; /* day of year (0-365, Jan 1st = 0) */
73 int tm_isdst; /* negative means dst status unknown */
76 IMPORT_C clock_t clock (void);
77 IMPORT_C double difftime (time_t _time2, time_t _time1) __SOFTFP;
78 IMPORT_C time_t mktime (struct tm *_timeptr);
79 IMPORT_C time_t time (time_t *_timer);
80 IMPORT_C size_t strftime (char *_s, size_t _maxsize, const char *_fmt, const struct tm *_t);
82 IMPORT_C char* asctime (const struct tm *_tblock);
83 IMPORT_C char* ctime (const time_t *_time);
84 IMPORT_C struct tm* gmtime (const time_t *_timer);
85 IMPORT_C struct tm* localtime (const time_t *_timer);
89 Re-entrant versions of the functions that return pointers to
90 a statically allocated buffer. These are internal to the STDLIB
91 implementation and not standard ANSI functions
93 IMPORT_C char* asctime_r (const struct tm *, char *);
94 IMPORT_C char* ctime_r (const time_t *, char *);
95 IMPORT_C struct tm* gmtime_r (const time_t *, struct tm *);
96 IMPORT_C struct tm* localtime_r (const time_t *, struct tm *);
101 #endif /* _TIME_H_ */