[rendering] This simple trick didn't work...
[wikipediardware.git] / wiki-lib / include / msg.h
blobe7adaf57866963ab3cd4c7f030596d77daa2939c
1 #ifndef WL_MSG_H
2 #define WL_MSG_H
4 enum {
5 MSG_ERROR = 0,
6 MSG_WARNING,
7 MSG_INFO,
8 MSG_DEBUG,
9 MSG_LEVEL_MAX
12 void msg(int level, const char *format, ...);
13 void set_loglevel(int level);
15 #endif /* WL_MSG_H */