swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 5ca15b8af7f018b9ae9da30130f9dcd1a896e0b3 authored by Junio C Hamano on 08 November 2005, 09:25:59 UTC
GIT 0.99.9f
Tip revision: 5ca15b8
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