swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 5c553ea2de0e21cb843eaf49b1820f9e395c76a3 authored by Junio C Hamano on 07 February 2007, 22:31:21 UTC
GIT v1.5.0-rc4
Tip revision: 5c553ea
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