diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-16 10:07:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-16 10:07:17 -0700 |
commit | b4bba8de115b6aa48103443cc81a3be7111095a9 (patch) | |
tree | d29b8b7ecafbf2d319697f2315b5c5ea8f4ff0ea /strbuf.h | |
parent | b4516df9b88989a175f88aa514a187831631f9f8 (diff) | |
parent | ffb20ce125f0ffe59002b1258b06c26747b69b7b (diff) | |
download | git-b4bba8de115b6aa48103443cc81a3be7111095a9.tar.gz |
Merge branch 'jk/strbuf-tolower'
* jk/strbuf-tolower:
strbuf: add strbuf_tolower function
Diffstat (limited to 'strbuf.h')
-rw-r--r-- | strbuf.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 *); /* |