Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 4c1611249432733818e724fe04a3e9b04848cdab authored by Junio C Hamano on 01 May 2007, 00:30:02 UTC
GIT v1.5.2-rc1
Tip revision: 4c16112
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