1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-10-06 06:19:43 +00:00
sys-con/source/log.h

15 lines
197 B
C
Raw Normal View History

2019-10-31 18:00:42 +00:00
#pragma once
#ifdef __cplusplus
extern "C"
2019-10-31 18:00:42 +00:00
{
#endif
2019-10-31 18:00:42 +00:00
void WriteToLog(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
2019-10-31 18:00:42 +00:00
void LockedUpdateConsole();
2019-10-31 18:00:42 +00:00
#ifdef __cplusplus
}
2019-10-31 18:00:42 +00:00
#endif