https://github.com/git/git
Raw File
Tip revision: c4e804bbf0c16aa0c2234ea733fba73de28bddaa authored by Junio C Hamano on 20 January 2006, 03:56:27 UTC
GIT 1.1.4
Tip revision: c4e804b
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