Revision a87e8be2aece466e3f41dfde81c80709e1d56cd3 authored by Linus Torvalds on 14 July 2005, 02:45:26 UTC, committed by Linus Torvalds on 14 July 2005, 02:45:26 UTC
.. and does a "git-upload-pack" on demand.
1 parent 85c414b
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