swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 1965efb1599f59b8e3380335d1fa395e2008a30b authored by Junio C Hamano on 01 October 2006, 10:08:55 UTC
GIT 1.4.3-rc1
Tip revision: 1965efb
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