Staging
v0.5.1
Revision 806ea701ce3624aa6a89648b6ca5d858703398cb authored by Junio C Hamano on 19 September 2007, 10:11:28 UTC, committed by Junio C Hamano on 19 September 2007, 10:11:28 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8ae6749
Raw File
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