Staging
v0.5.1
https://github.com/git/git
Revision 0de62e598552765eb674b72bbaf55b2e2933f617 authored by Junio C Hamano on 11 January 2006, 00:20:22 UTC, committed by Junio C Hamano on 11 January 2006, 00:20:22 UTC
2 parent s 8fc11b5 + d5a6aaf
Raw File
Tip revision: 0de62e598552765eb674b72bbaf55b2e2933f617 authored by Junio C Hamano on 11 January 2006, 00:20:22 UTC
GIT 1.0.9
Tip revision: 0de62e5
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