Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: c7c84859ad586ae5670224e1abc4f846f7c3a9ae authored by Junio C Hamano on 16 June 2007, 06:58:18 UTC
GIT 1.5.2.2
Tip revision: c7c8485
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