diff options
author | Thomas Rast <trast@student.ethz.ch> | 2012-02-22 20:34:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-22 18:58:16 -0800 |
commit | 5e8617f560968567c285bc2e9b0674f8f9d535cb (patch) | |
tree | 9d299e020186cfba3d912ac8863954dd9e0a1d98 /strbuf.h | |
parent | d0482e88a735787f7bb33ef4783be0e7f6a70946 (diff) | |
download | git-5e8617f560968567c285bc2e9b0674f8f9d535cb.tar.gz |
bundle: put strbuf_readline_fd in strbuf.c with adjustments
The comment even said that it should eventually go there. While at
it, match the calling convention and name of the function to the
strbuf_get*line family. So it now is strbuf_getwholeline_fd.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r-- | strbuf.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -108,6 +108,7 @@ extern int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint); extern int strbuf_getwholeline(struct strbuf *, FILE *, int); extern int strbuf_getline(struct strbuf *, FILE *, int); +extern int strbuf_getwholeline_fd(struct strbuf *, int, int); extern void stripspace(struct strbuf *buf, int skip_comments); extern int launch_editor(const char *path, struct strbuf *buffer, const char *const *env); |