From ebabaa69c0a3ba992895c7a66729e81e0923d5f1 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Thu, 5 Apr 2018 17:53:27 +0200 Subject: Initial commit. Signed-off-by: Toni Uhlig --- src/log_colored.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/log_colored.h (limited to 'src/log_colored.h') diff --git a/src/log_colored.h b/src/log_colored.h new file mode 100644 index 0000000..c7c0014 --- /dev/null +++ b/src/log_colored.h @@ -0,0 +1,25 @@ +#ifndef POTD_LOG_COLORED +#define POTD_LOG_COLORED 1 + +#include "log.h" + +/* ANSI terminal color codes */ +#define RESET "\x1B[0m" +#define GRN "\x1B[32;1m" +#define YEL "\x1B[33;1m" +#define RED "\x1B[31;1;5m" +/* LOG_SET_FUNCS comfort */ +#define LOG_COLORED_FUNCS log_open_colored, log_close_colored, \ + log_fmt_colored, log_fmtex_colored + + +int log_open_colored(void); + +void log_close_colored(void); + +void log_fmt_colored(log_priority prio, const char *fmt, ...); + +void log_fmtex_colored(log_priority prio, const char *srcfile, + size_t line, const char *fmt, ...); + +#endif -- cgit v1.2.3