Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 1b9bc5a7b7434d771726011613a00cb202bd9f44 authored by Junio C Hamano on 15 May 2006, 19:52:00 UTC
Fix pack-index issue on 64-bit platforms a bit more portably.
Tip revision: 1b9bc5a
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