Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5a716826a6f7f209777f344143cdd9e4f2903097 authored by Junio C Hamano on 03 August 2006, 23:40:20 UTC
GIT 1.4.2-rc3
Tip revision: 5a71682
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