diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-11 21:16:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-12 01:06:09 -0800 |
commit | 229d8107470ded5e5e6c43cf5daeabf382cce9d1 (patch) | |
tree | ff864bf3dd161137bf8eb527d0b695af1500b978 | |
parent | 356521ab22fb76e17aa8dc9993ff81fade49e11c (diff) | |
download | git-229d8107470ded5e5e6c43cf5daeabf382cce9d1.tar.gz |
strbuf.c: remove unused function
strbuf_tolower() is not used anywhere.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | strbuf.c | 7 | ||||
-rw-r--r-- | strbuf.h | 1 |
2 files changed, 0 insertions, 8 deletions
@@ -91,13 +91,6 @@ void strbuf_ltrim(struct strbuf *sb) sb->buf[sb->len] = '\0'; } -void strbuf_tolower(struct strbuf *sb) -{ - int i; - for (i = 0; i < sb->len; i++) - sb->buf[i] = tolower(sb->buf[i]); -} - struct strbuf **strbuf_split(const struct strbuf *sb, int delim) { int alloc = 2, pos = 0; @@ -81,7 +81,6 @@ extern void strbuf_trim(struct strbuf *); extern void strbuf_rtrim(struct strbuf *); extern void strbuf_ltrim(struct strbuf *); extern int strbuf_cmp(const struct strbuf *, const struct strbuf *); -extern void strbuf_tolower(struct strbuf *); extern struct strbuf **strbuf_split(const struct strbuf *, int delim); extern void strbuf_list_free(struct strbuf **); |