All checks were successful
CI / build-and-analyze (push) Successful in 1m17s
19 lines
261 B
C
19 lines
261 B
C
#ifndef CGE_TIMER_H
|
|
#define CGE_TIMER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
int CgeTimerIsMonotonic(void);
|
|
uint64_t CgeTimerNanoseconds(void);
|
|
uint64_t CgeTimerMilliseconds(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CGE_TIMER_H */
|