Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e1a0c8b1483b38d32d3870408e03a6c1b340aa15 authored by Junio C Hamano on 02 March 2006, 01:06:12 UTC
Merge branch 'lt/fix-apply' into maint
Tip revision: e1a0c8b
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