https://github.com/git/git
Raw File
Tip revision: bf9e9542f94bc39e8bc653065d477bd25e79010e authored by Junio C Hamano on 22 June 2006, 17:36:26 UTC
Merge branch 'master' into next
Tip revision: bf9e954
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