Revision aa9dc7afd2fc40466b430b35fc5c82d3c820cb26 authored by Junio C Hamano on 13 December 2005, 07:38:47 UTC, committed by Junio C Hamano on 14 December 2005, 10:53:43 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent d025524
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