initial commit

This commit is contained in:
R-type
2015-12-14 14:00:35 +01:00
commit 5a96c0ca66
377 changed files with 149124 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef LOG_H_
#define LOG_H_
#define Log_BUFFER_SIZE 8192
extern char Log_buffer[Log_BUFFER_SIZE];
void Log_print(const char *format, ...);
void Log_flushlog(void);
#endif /* LOG_H_ */