]> Shamusworld >> Repos - thunder/blob - src/log.h
3367c340cf1effe5af36da38488cbaa5768ffcec
[thunder] / src / log.h
1 //
2 // LOG.H
3 //
4
5 #ifndef __LOG_H__
6 #define __LOG_H__
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <stdarg.h>
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 bool InitLog(const char *);
17 void LogDone(void);
18 void WriteLog(const char * text, ...);
19
20 #ifdef __cplusplus
21 }
22 #endif
23
24 #endif  // __LOG_H__