Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 843142ada000a992fa87bd2dc7796501332a52d9 authored by Junio C Hamano on 10 May 2007, 21:49:36 UTC
GIT v1.5.2-rc3
Tip revision: 843142a
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