first flow of .h, one main() compilng

This commit is contained in:
tonton Th
2020-03-28 09:57:02 +01:00
parent 33f0954c7b
commit 850cf9d8bd
14 changed files with 873 additions and 5 deletions

18
printlog.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* printlog
* architecture clients/serveur guinness
* Thomas Nemeth / Arnaud Giersch -- le 23 aoû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