blob: af6091113302d9a861995a27a770d2693de44eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef LOG_H
#define LOG_H
#define LOG_INF 1
#define LOG_DBG 2
#define LOG_WRN 3
#define LOG_ERR 4
extern int initLog(char *name);
extern void addToLog(int type, char *msg);
extern void quitLog();
#endif
|