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