https://github.com/git/git
Raw File
Tip revision: 9dfdf14b3805e89aa2782458bda15b3dfae24c09 authored by Junio C Hamano on 15 July 2007, 23:41:17 UTC
GIT v1.5.3-rc2
Tip revision: 9dfdf14
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