blob: a7d46888c0b8d32971974424becaa7f759e55ef1 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef LOG_H
#define LOG_H
void log_init(const char* prefix, int verbose);
void log_debug(const char *format, ...);
void log_perror(const char *message);
void log_error(const char *format, ...);
void log_info(const char *format, ...);
void log_warning(const char *format, ...);
#endif
|