Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: a0764cb838c2f1885fb58ca794c21523fb05c825 authored by Matthias Lederhofer on 18 July 2006, 17:14:51 UTC
upload-pack: fix timeout in create_pack_file
Tip revision: a0764cb
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