swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 4bc94d289221e16cccbc72f73b3b5b1de0b822c5 authored by Junio C Hamano on 19 February 2007, 00:18:43 UTC
GIT 1.5.0.1
Tip revision: 4bc94d2
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