Staging
v0.5.1
Revision 3f2a7ae2c84c921e11041a5edc2522964fc1cce5 authored by Junio C Hamano on 31 October 2007, 19:20:05 UTC, committed by Junio C Hamano on 31 October 2007, 19:20:05 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 0bdb5af
Raw File
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