Files
mars-libowfat/buffer/bs_err.c
2020-10-30 15:35:53 +00:00

7 lines
89 B
C

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