Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 98cf8156078eb5256d77d01786863185a1728140 authored by Junio C Hamano on 07 April 2006, 23:48:09 UTC
count-delta: match get_delta_hdr_size() changes.
Tip revision: 98cf815
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