Implement colored logging for para_server.
[paraslash.git] / color.h
1 /** \file color.h Exported functions from color.c. */
2
3
4 /** "\033[1;38;5;2xx;48;5;2xxm\0" is 23 bytes */
5 #define COLOR_MAXLEN 24
6
7 #define COLOR_RESET "\033[m"
8
9 int color_parse(const char *value, char *dst);