Staging
v0.5.1
Revision 7685227e973fce34340d3766b1775263751afa56 authored by Junio C Hamano on 28 March 2007, 22:58:09 UTC, committed by Junio C Hamano on 28 March 2007, 22:58:09 UTC
1 parent 43a8e4f
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