diff options
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#ifndef LOG_H +#define LOG_H +void log_init(void); +void log_debug(const char *format, ...); +void log_perror(const char *message); +void log_error(const char *format, ...); +void log_info(const char *format, ...); +#endif |