swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 0d9b9ab1284ce125fd49cf7dbf4d28e0540cf035 authored by Junio C Hamano on 26 February 2007, 07:58:50 UTC
GIT 1.5.0.2
Tip revision: 0d9b9ab
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