Sign in
code
/
git
/
90c4851b1787dfc1d3d3a5cf78c558d136c69bdd
/
.
/
strbuf.h
blob: da678e506fcb6219f73d07982b057192cb30beb3 [
file
] [
log
] [
blame
]
#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 */