Initial commit
All checks were successful
CI / build-and-analyze (push) Successful in 33s

This commit is contained in:
2026-08-08 20:33:32 +03:00
commit e382d4ed13
12 changed files with 474 additions and 0 deletions

10
CgeTimer.h Normal file
View File

@@ -0,0 +1,10 @@
#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 */