summaryrefslogtreecommitdiff
path: root/grep.c
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-02-13 01:41:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-02-13 18:17:12 (GMT)
commit75e5e9c3f7f9615ae2ee38a839aafbbe642a735a (patch)
treec8c08c1f83c237daf0ed4d9f1c470f2eae145390 /grep.c
parent8279ed033f703d4115bee620dccd32a9ec94d9aa (diff)
downloadgit-75e5e9c3f7f9615ae2ee38a839aafbbe642a735a.zip
git-75e5e9c3f7f9615ae2ee38a839aafbbe642a735a.tar.gz
git-75e5e9c3f7f9615ae2ee38a839aafbbe642a735a.tar.bz2
color.h: document and modernize header
Add documentation explaining the functions in color.h. While at it, migrate the function `color_set` into grep.c, where the only callers are. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'grep.c')
-rw-r--r--grep.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/grep.c b/grep.c
index 3d7cd0e..834b8eb 100644
--- a/grep.c
+++ b/grep.c
@@ -18,6 +18,11 @@ static void std_output(struct grep_opt *opt, const void *buf, size_t size)
fwrite(buf, size, 1, stdout);
}
+static void color_set(char *dst, const char *color_bytes)
+{
+ xsnprintf(dst, COLOR_MAXLEN, "%s", color_bytes);
+}
+
/*
* Initialize the grep_defaults template with hardcoded defaults.
* We could let the compiler do this, but without C99 initializers