Staging
v0.5.1
https://github.com/git/git
Revision 8fc11b5aa98540f7caab87e22e5aae63512893a2 authored by Junio C Hamano on 08 January 2006, 05:32:48 UTC, committed by Junio C Hamano on 08 January 2006, 05:32:48 UTC
2 parent s 92e802c + 6f2eacf
Raw File
Tip revision: 8fc11b5aa98540f7caab87e22e5aae63512893a2 authored by Junio C Hamano on 08 January 2006, 05:32:48 UTC
GIT 1.0.8
Tip revision: 8fc11b5
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