blob: f6a209cbb1bebbd032bfa78d29f130baf56950b9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef LOGGER_H
#define LOGGER_H
void LOG(int level, const char *fmt, ...);
void LOGip(int level, unsigned ip, unsigned port, const char *fmt, ...);
void LOG_add_level(int level);
#endif
|