1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-24 07:07:17 +02:00
git/strbuf.h

14 lines
216 B
C
Raw Normal View History

#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 */