upiwin/src/log.h

13 lines
221 B
C

#ifndef __LOG_H_INCLUDED
#define __LOG_H_INCLUDED
#define LFATAL 0
#define LERROR 1
#define LWARN 2
#define LINFO 3
#define LDEBUG 4
extern void log(int level, const char *format, ...);
#endif /* __LOG_H_INCLUDED */