Staging
v0.5.1
https://github.com/git/git
Revision 423325a2d24638ddcc82ce47be5e40be550f4507 authored by Junio C Hamano on 04 December 2005, 07:46:02 UTC, committed by Junio C Hamano on 04 December 2005, 07:46:02 UTC
2 parent s 93dcab2 + d79374c
Raw File
Tip revision: 423325a2d24638ddcc82ce47be5e40be550f4507 authored by Junio C Hamano on 04 December 2005, 07:46:02 UTC
GIT 0.99.9l aka 1.0rc4
Tip revision: 423325a
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