initial commit
[xdos] / src / logger.h
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
3
4 #include <stdio.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 void logger_output(FILE *fp);
11 void printlog(const char *fmt, ...);
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif  /* LOGGER_H_ */