mirror of
https://github.com/git/git.git
synced 2024-11-02 07:17:58 +01:00
14 lines
225 B
C
14 lines
225 B
C
|
#ifndef STRBUF_H
|
||
|
#define STRBUF_H
|
||
|
struct strbuf {
|
||
|
int alloc;
|
||
|
int len;
|
||
|
int eof;
|
||
|
unsigned char *buf;
|
||
|
};
|
||
|
|
||
|
extern void strbuf_init(struct strbuf *);
|
||
|
extern void read_line(struct strbuf *, FILE *, int);
|
||
|
|
||
|
#endif /* STRBUF_H */
|