Staging
v0.5.1
Revision 437b1b20df4b356c9342dac8d38849f24ef44f27 authored by Junio C Hamano on 14 February 2007, 00:00:00 UTC, committed by Junio C Hamano on 14 February 2007, 00:00:00 UTC
1 parent 26cfcfb
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