author | Pierre Habouzit <madcoder@debian.org> | |
Mon, 10 Sep 2007 10:35:04 +0000 (12:35 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 10 Sep 2007 19:48:24 +0000 (12:48 -0700) | ||
commit | f1696ee398e92bcea3cdc7b3da85d8e0f77f6c50 | |
tree | 5951ed29b6f7bc887c4e5c75bf87b258232d1a76 | tree | snapshot |
parent | ddb95de33e99d547c3b533aea12f18c9e4dd649e | commit | diff |
Strbuf API extensions and fixes.
* Add strbuf_rtrim to remove trailing spaces.
* Add strbuf_insert to insert data at a given position.
* Off-by one fix in strbuf_addf: strbuf_avail() does not counts the final
\0 so the overflow test for snprintf is the strict comparison. This is
not critical as the growth mechanism chosen will always allocate _more_
memory than asked, so the second test will not fail. It's some kind of
miracle though.
* Add size extension hints for strbuf_init and strbuf_read. If 0, default
applies, else:
+ initial buffer has the given size for strbuf_init.
+ first growth checks it has at least this size rather than the
default 8192.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
* Add strbuf_rtrim to remove trailing spaces.
* Add strbuf_insert to insert data at a given position.
* Off-by one fix in strbuf_addf: strbuf_avail() does not counts the final
\0 so the overflow test for snprintf is the strict comparison. This is
not critical as the growth mechanism chosen will always allocate _more_
memory than asked, so the second test will not fail. It's some kind of
miracle though.
* Add size extension hints for strbuf_init and strbuf_read. If 0, default
applies, else:
+ initial buffer has the given size for strbuf_init.
+ first growth checks it has at least this size rather than the
default 8192.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 files changed:
archive-tar.c | diff | blob | history | |
builtin-apply.c | diff | blob | history | |
builtin-blame.c | diff | blob | history | |
builtin-checkout-index.c | diff | blob | history | |
builtin-commit-tree.c | diff | blob | history | |
builtin-rerere.c | diff | blob | history | |
builtin-update-index.c | diff | blob | history | |
cache-tree.c | diff | blob | history | |
diff.c | diff | blob | history | |
fast-import.c | diff | blob | history | |
fetch.c | diff | blob | history | |
mktree.c | diff | blob | history | |
strbuf.c | diff | blob | history | |
strbuf.h | diff | blob | history |