swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: a0a01958d7c059b1535b79a80dc37181b25bb677 authored by Junio C Hamano on 08 April 2006, 01:02:40 UTC
GIT 1.3.0-rc3
Tip revision: a0a0195
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