Staging
v0.5.1
https://github.com/git/git
Revision 89815cab95268e8f0f58142b848ac4cd5e9cbdcb authored by Junio C Hamano on 04 April 2007, 05:47:01 UTC, committed by Junio C Hamano on 04 April 2007, 05:47:01 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 045f575
Raw File
Tip revision: 89815cab95268e8f0f58142b848ac4cd5e9cbdcb authored by Junio C Hamano on 04 April 2007, 05:47:01 UTC
GIT 1.5.1
Tip revision: 89815ca
strbuf.h
#ifndef STRBUF_H
#define STRBUF_H
struct strbuf {
	int alloc;
	int len;
	int eof;
	char *buf;
};

extern void strbuf_init(struct strbuf *);
extern void read_line(struct strbuf *, FILE *, int);

#endif /* STRBUF_H */
back to top