diff options
author | Phil Jones <philj56@gmail.com> | 2022-06-21 19:14:47 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-06-21 19:14:47 +0100 |
commit | 25b2c9f895fd91fb556809ce513d3681ad279938 (patch) | |
tree | 6fa7595308fb26e2e7d61bba95836be496b7557b /src/log.h | |
parent | 54e90f75203bbf40ec6ac6dd09227e2c6f97cc62 (diff) |
Add config file handling.
Single letter style arguments have been removed.
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,5 +7,9 @@ void log_error(const char *const fmt, ...); void log_warning(const char *const fmt, ...); void log_debug(const char *const fmt, ...); void log_info(const char *const fmt, ...); +void log_append_error(const char *const fmt, ...); +void log_append_warning(const char *const fmt, ...); +void log_append_debug(const char *const fmt, ...); +void log_append_info(const char *const fmt, ...); #endif /* LOG_H */ |