From: Junio C Hamano Date: Tue, 12 Jan 2010 05:16:26 +0000 (-0800) Subject: strbuf.c: remove unused function X-Git-Tag: v1.7.0-rc0~77^2~4 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=229d8107470ded5e5e6c43cf5daeabf382cce9d1;p=git-core%2Fgit.git strbuf.c: remove unused function strbuf_tolower() is not used anywhere. Signed-off-by: Junio C Hamano --- diff --git a/strbuf.c b/strbuf.c index a6153dca2..3fa81b336 100644 --- a/strbuf.c +++ b/strbuf.c @@ -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; diff --git a/strbuf.h b/strbuf.h index fa07ecf09..b37f06a34 100644 --- a/strbuf.h +++ b/strbuf.h @@ -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 **);