diff options
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h new file mode 100644 index 0000000..e030bc9 --- /dev/null +++ b/src/log.h @@ -0,0 +1,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 */ |