Files
CgeTimer/CgeTimer.h
Mikhail Romanko e3cd5a61b3
All checks were successful
CI / build-and-analyze (push) Successful in 1m17s
Prevent name mangling in C++
2026-08-18 10:43:02 +03:00

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