All checks were successful
CI / build-and-analyze (push) Successful in 33s
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 */
|