mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 20:43:38 +01:00
27 lines
497 B
C
27 lines
497 B
C
|
#ifndef __TIME_H__
|
||
|
# define __TIME_H__
|
||
|
|
||
|
/* Number of ticks per second in a clock_t value. */
|
||
|
#define CLOCKS_PER_SEC 1000000
|
||
|
|
||
|
/* Type used to represent process CPU time; unit is CLOCKS_PER_SEC. */
|
||
|
typedef uint64_t clock_t;
|
||
|
|
||
|
/* Type used to represent a number of seconds since Epoch. */
|
||
|
typedef uint64_t time_t;
|
||
|
|
||
|
/* Broken-down time. */
|
||
|
struct tm {
|
||
|
int tm_sec;
|
||
|
int tm_min;
|
||
|
int tm_hour;
|
||
|
int tm_mday;
|
||
|
int tm_mon;
|
||
|
int tm_year;
|
||
|
int tm_wday;
|
||
|
int tm_yday;
|
||
|
int tm_isdst;
|
||
|
};
|
||
|
|
||
|
#endif /*__TIME_H__*/
|