diff options
author | René Scharfe <l.s.r@web.de> | 2014-09-07 09:03:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-08 11:26:45 -0700 |
commit | d07235a027e0c7ed2fee1aeb3bee8a858bf5ca58 (patch) | |
tree | 8805b3767a1d86908c448aef92e56036fdeee92b /utf8.c | |
parent | e6aaa393478bf3ee9f4cde8d82cd258c034cd335 (diff) | |
download | git-d07235a027e0c7ed2fee1aeb3bee8a858bf5ca58.tar.gz |
strbuf: export strbuf_addchars()
Move strbuf_addchars() to strbuf.c, where it belongs, and make it
available for other callers.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -302,13 +302,6 @@ int is_utf8(const char *text) return 1; } -static void strbuf_addchars(struct strbuf *sb, int c, size_t n) -{ - strbuf_grow(sb, n); - memset(sb->buf + sb->len, c, n); - strbuf_setlen(sb, sb->len + n); -} - static void strbuf_add_indented_text(struct strbuf *buf, const char *text, int indent, int indent2) { |