summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-05-23 20:03:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-05-23 21:09:58 (GMT)
commitffb20ce125f0ffe59002b1258b06c26747b69b7b (patch)
treefe26b2149508f289c112f98df1800a1f30e284c0 /strbuf.h
parent4a28f169ad29ba452e0e7bea2583914c10c58322 (diff)
downloadgit-ffb20ce125f0ffe59002b1258b06c26747b69b7b.zip
git-ffb20ce125f0ffe59002b1258b06c26747b69b7b.tar.gz
git-ffb20ce125f0ffe59002b1258b06c26747b69b7b.tar.bz2
strbuf: add strbuf_tolower function
This is a convenience wrapper to call tolower on each character of the string. This makes config's lowercase() function obsolete, though note that because we have a strbuf, we are careful to operate over the whole strbuf, rather than assuming that a NUL is the end-of-string. We could continue to offer a pure-string lowercase, but there would be no callers (in most pure-string cases, we actually duplicate and lowercase the duplicate, for which we have the xstrdup_tolower wrapper). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r--strbuf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/strbuf.h b/strbuf.h
index 39c14cf..6b6f745 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -45,6 +45,7 @@ static inline void strbuf_setlen(struct strbuf *sb, size_t len)
extern void strbuf_trim(struct strbuf *);
extern void strbuf_rtrim(struct strbuf *);
extern void strbuf_ltrim(struct strbuf *);
+extern void strbuf_tolower(struct strbuf *sb);
extern int strbuf_cmp(const struct strbuf *, const struct strbuf *);
/*