libowfat/buffer/bs_init_iobuf.c

9 lines
155 B
C
Raw Normal View History

#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;
}