]> git.ipfire.org Git - thirdparty/git.git/blame - color.h
Sync with 1.5.4.2 and start 1.5.5 Release Notes
[thirdparty/git.git] / color.h
CommitLineData
7c92fe0e
JK
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
0f6f5a40 7int git_config_colorbool(const char *var, const char *value, int stdout_is_tty);
7c92fe0e 8void color_parse(const char *var, const char *value, char *dst);
f26a0012
KH
9int color_fprintf(FILE *fp, const char *color, const char *fmt, ...);
10int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...);
7c92fe0e
JK
11
12#endif /* COLOR_H */