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
2020-04-14 23:41:07 +02:00
* Thomas Nemeth / Arnaud Giersch -- le 23 aout 2001
2020-03-28 09:57:02 +01:00
*
*/
#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