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 /Documentation | |
parent | Documentation: fix missing text for rev-parse --verify (diff) | |
download | tgif-d07235a027e0c7ed2fee1aeb3bee8a858bf5ca58.tar.xz |
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 'Documentation')
-rw-r--r-- | Documentation/technical/api-strbuf.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/technical/api-strbuf.txt b/Documentation/technical/api-strbuf.txt index 3350d97dda..1d83362116 100644 --- a/Documentation/technical/api-strbuf.txt +++ b/Documentation/technical/api-strbuf.txt @@ -142,6 +142,10 @@ then they will free() it. Add a single character to the buffer. +`strbuf_addchars`:: + + Add a character the specified number of times to the buffer. + `strbuf_insert`:: Insert data to the given position of the buffer. The remaining contents |