summaryrefslogtreecommitdiff
path: root/src/log.h
blob: e030bc9635584ab99a30cdd7133aa2b99a34622a (plain)
1
2
3
4
5
6
7
8
9
#ifndef LOG_H
#define LOG_H

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 */