Sign in
code
/
git
/
2be7fcb4764f2dbcee52635b91fedb1b3dcf7ab4
/
.
/
strbuf.h
blob: 74cc012c2c62d05cb773c6dd4776af0fdc237dfb [
file
]
#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 */