blob: 8e2632a3799339cfc31fa97e36ad2fcb8fd0b7e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef ERR_H
#define ERR_H
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdarg.h>
#include "def.h"
#define DEBUG_PATH "/tmp/eps_debug.txt"
enum msgtype {
MSGTYPE_ERROR = 0,
MSGTYPE_WARNING,
MSGTYPE_INFO,
MSGTYPE_MESSAGE
};
void err_init (const char *);
void err_msg (enum msgtype, const char *, ...);
void err_fatal (const char *, ...);
void err_system (const char *, ...);
#endif /* ERR_H */
|