diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-02-14 00:28:11 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-02-14 00:28:11 +0100 |
| commit | 72de33c4f15144e7c597fad850510dd7da88a0f2 (patch) | |
| tree | 7d349ba78f168359866b98b9424238d50e58e7f0 /src/log.h | |
| parent | 12b6c9dfd009352e0bb7f8395abd3678e3bd6265 (diff) | |
| download | tmus-72de33c4f15144e7c597fad850510dd7da88a0f2.tar.gz tmus-72de33c4f15144e7c597fad850510dd7da88a0f2.zip | |
Refactored main.c into many files
Diffstat (limited to 'src/log.h')
| -rw-r--r-- | src/log.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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, ...); |
