aboutsummaryrefslogtreecommitdiffstats
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/log.h b/log.h
new file mode 100644
index 0000000..8668dff
--- /dev/null
+++ b/log.h
@@ -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