summaryrefslogtreecommitdiffstats
path: root/src/log.h
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2022-02-14 00:28:11 +0100
committerLouis Burda <quent.burda@gmail.com>2022-02-14 00:28:11 +0100
commit72de33c4f15144e7c597fad850510dd7da88a0f2 (patch)
tree7d349ba78f168359866b98b9424238d50e58e7f0 /src/log.h
parent12b6c9dfd009352e0bb7f8395abd3678e3bd6265 (diff)
downloadtmus-72de33c4f15144e7c597fad850510dd7da88a0f2.tar.gz
tmus-72de33c4f15144e7c597fad850510dd7da88a0f2.zip
Refactored main.c into many files
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/log.h b/src/log.h
index 7092e60..9ef09fe 100644
--- a/src/log.h
+++ b/src/log.h
@@ -1,9 +1,9 @@
+#pragma once
+
#include <stdarg.h>
#include <stdio.h>
void log_init(void);
-void log_info(const char *fmtstr, ...);
-void log_end(void);
+void log_deinit(void);
-extern int log_active;
-extern FILE *log_file;
+void log_info(const char *fmtstr, ...);