Staging
v0.5.1
Revision babfaf8dee0baa09c56d1a2ec5623b60d900518b authored by Josef Weidendorfer on 15 February 2006, 19:22:11 UTC, committed by Junio C Hamano on 16 February 2006, 03:14:04 UTC
Signed-off-by: Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 6c5c62f
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