GuinnessServer/printlog.h

19 lines
302 B
C
Raw Normal View History

2020-03-28 09:57:02 +01:00
/*
* printlog
* architecture clients/serveur guinness
* Thomas Nemeth / Arnaud Giersch -- le 23 ao<EFBFBD>t 2001
*
*/
#ifndef PRINT_LOGS
#define PRINT_LOGS
enum log_level {LOG_NOTIFY, LOG_ERROR};
typedef enum log_level log_level;
void printlog (log_level loglevel, const char *format, ...);
#endif