libowfat/buffer/bs_err.c

7 lines
89 B
C
Raw Normal View History

2020-10-30 15:35:53 +00:00
#include "parse.h"
int bs_err(struct bytestream* bs) {
return (bs->cur > bs->max);
}