Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: b5cc62f701abf8b903387a5d7c77a59f347d66fd authored by Junio C Hamano on 01 May 2007, 00:09:48 UTC
GIT v1.5.1.3
Tip revision: b5cc62f
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