Files
CgeTimer/CgeTimer.h
Mikhail Romanko 213d957ff8
All checks were successful
CI / build-and-analyze (push) Successful in 1m4s
Initial commit
2026-08-08 20:33:32 +03:00

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 */