Staging
v0.5.1
Revision b86bec6c4ff7909246e68a4495dcaaeede3907e9 authored by Junio C Hamano on 08 June 2006, 03:16:30 UTC, committed by Junio C Hamano on 08 June 2006, 03:19:00 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 99b41c8
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