summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorThomas Rast <trast@student.ethz.ch>2012-02-22 19:34:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-23 02:58:16 (GMT)
commit5e8617f560968567c285bc2e9b0674f8f9d535cb (patch)
tree9d299e020186cfba3d912ac8863954dd9e0a1d98 /strbuf.h
parentd0482e88a735787f7bb33ef4783be0e7f6a70946 (diff)
downloadgit-5e8617f560968567c285bc2e9b0674f8f9d535cb.zip
git-5e8617f560968567c285bc2e9b0674f8f9d535cb.tar.gz
git-5e8617f560968567c285bc2e9b0674f8f9d535cb.tar.bz2
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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/strbuf.h b/strbuf.h
index 46a33f8..e42dbe5 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -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);