libowfat/buffer/bs_err.c
2020-11-08 00:29:35 +00:00

7 lines
95 B
C

#include "parse.h"
int bs_err(const struct bytestream* bs) {
return (bs->cur > bs->max);
}