Prevent name mangling in C++
All checks were successful
CI / build-and-analyze (push) Successful in 1m17s

This commit is contained in:
2026-08-18 10:43:02 +03:00
parent a71d8712d2
commit e3cd5a61b3

View File

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