1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-08 11:58:44 +00:00
sys-con/source/log.h

15 lines
197 B
C

#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
void WriteToLog(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
void LockedUpdateConsole();
#ifdef __cplusplus
}
#endif