11 lines
192 B
C
11 lines
192 B
C
|
|
#ifndef CGE_TIMER_H
|
||
|
|
#define CGE_TIMER_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
int CgeTimerIsMonotonic(void);
|
||
|
|
uint64_t CgeTimerNanoseconds(void);
|
||
|
|
uint64_t CgeTimerMilliseconds(void);
|
||
|
|
|
||
|
|
#endif /* CGE_TIMER_H */
|