]> git.ipfire.org Git - thirdparty/git.git/commit - strbuf.c
strbuf: provide function to append whole lines
authorPatrick Steinhardt <ps@pks.im>
Mon, 30 Mar 2020 13:46:27 +0000 (15:46 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 30 Mar 2020 17:34:11 +0000 (10:34 -0700)
commitbd021f39103fab4c5ae53a4d1a1756f8970d00db
treeaaa9e1fca96f72bfc63acfe48447ee6df79a881b
parentfaa35eec4d119e9d4faa25d10a2b00029d8f1bdb
strbuf: provide function to append whole lines

While the strbuf interface already provides functions to read a line
into it that completely replaces its current contents, we do not have an
interface that allows for appending lines without discarding current
contents.

Add a new function `strbuf_appendwholeline` that reads a line including
its terminating character into a strbuf non-destructively. This is a
preparatory step for git-update-ref(1) reading standard input line-wise
instead of as a block.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
strbuf.c
strbuf.h