Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: f7b47b273ed2c9e9b298c4f5dd02884b46dfbced authored by Junio C Hamano on 20 May 2007, 01:18:24 UTC
GIT 1.5.1.6
Tip revision: f7b47b2
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