You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
155 B
C
9 lines
155 B
C
4 years ago
|
#include "parse.h"
|
||
|
|
||
|
void bs_init_iobuf(struct bytestream* bs,struct buffer* b) {
|
||
|
bs->type = IOBUF;
|
||
|
bs->cur = 0;
|
||
|
bs->max = (size_t)-1;
|
||
|
bs->u.b=b;
|
||
|
}
|