rayzor

view src/logger.h @ 8:fcd06a15dfdd

added missing set_mouse_limits to dosemu.c
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 07 Apr 2014 08:46:06 +0300
parents a826bf0fb169
children
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 #include <stdio.h>
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 void logger_output(FILE *fp);
11 void printlog(const char *fmt, ...);
13 #ifdef __cplusplus
14 }
15 #endif
17 #endif /* LOGGER_H_ */