diff options
author | Phil Jones <philj56@gmail.com> | 2022-06-10 15:03:43 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-06-10 15:03:43 +0100 |
commit | 8ed1afd0bf92e2a4f420f3fefe35b1fc3181cc76 (patch) | |
tree | 0f02a7846148b11e197bf123a6f5dc1146588be7 /src/log.h | |
parent | e95df559761692e2ec9252564b0d416b9bf99993 (diff) |
Add indents to log functions.
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #ifndef LOG_H #define LOG_H +void log_indent(void); +void log_unindent(void); void log_error(const char *const fmt, ...); void log_warning(const char *const fmt, ...); void log_debug(const char *const fmt, ...); |