blob: 93765ec08e259fb396578c9a434a5f858fa36416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LOG_H
#define LOG_H
void log_indent(void);
void log_unindent(void);
void log_error(const char *const fmt, ...);
void log_warning(const char *const fmt, ...);
void log_debug(const char *const fmt, ...);
void log_info(const char *const fmt, ...);
#endif /* LOG_H */
|