Staging
v0.5.1
https://github.com/git/git
Revision c2f3bf071ee90b01f2d629921bb04c4f798f02fa authored by Junio C Hamano on 21 December 2005, 08:01:00 UTC, committed by Junio C Hamano on 21 December 2005, 08:01:00 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s 1ed9193 + 41f93a2
Raw File
Tip revision: c2f3bf071ee90b01f2d629921bb04c4f798f02fa authored by Junio C Hamano on 21 December 2005, 08:01:00 UTC
GIT 1.0.0
Tip revision: c2f3bf0
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