[PATCH] Test GIT environment use.
[git/gitweb.git] / strbuf.h
blobda678e506fcb6219f73d07982b057192cb30beb3
1 #ifndef STRBUF_H
2 #define STRBUF_H
3 struct strbuf {
4 int alloc;
5 int len;
6 int eof;
7 unsigned char *buf;
8 };
10 extern void strbuf_init(struct strbuf *);
11 extern void read_line(struct strbuf *, FILE *, int);
13 #endif /* STRBUF_H */