removed clang-format and clang_complete files from the repo
[dosdemo] / src / dos / logger.h
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 int init_logger(const char *fname);
9 void stop_logger(void);
10
11 int print_tail(const char *fname);
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif  /* LOGGER_H_ */