swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 8c4e4ef0f575cd60fb4bb6a70305fcb0ed85da6a authored by Junio C Hamano on 31 January 2007, 23:06:21 UTC
GIT v1.5.0-rc3
Tip revision: 8c4e4ef
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