mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
time: add general definitions
This commit is contained in:
parent
6e42995388
commit
f5571e2b3d
1 changed files with 26 additions and 0 deletions
26
include/time.h
Normal file
26
include/time.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#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__*/
|
Loading…
Reference in a new issue