Jeff King | 7c92fe0 | 2006-09-08 04:03:18 -0400 | [diff] [blame] | 1 | #ifndef COLOR_H |
2 | #define COLOR_H | ||||
3 | |||||
4 | /* "\033[1;38;5;2xx;48;5;2xxm\0" is 23 bytes */ | ||||
5 | #define COLOR_MAXLEN 24 | ||||
6 | |||||
7 | int git_config_colorbool(const char *var, const char *value); | ||||
8 | void color_parse(const char *var, const char *value, char *dst); | ||||
9 | int color_printf(const char *color, const char *fmt, ...); | ||||
10 | int color_printf_ln(const char *color, const char *fmt, ...); | ||||
11 | |||||
12 | #endif /* COLOR_H */ |