libowfat/buffer/bs_err.c

7 lines
95 B
C
Raw Normal View History

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