move bs_err into own C file

This commit is contained in:
leitner 2020-10-30 15:35:53 +00:00
parent acee16d884
commit f63eb1d9c5

6
buffer/bs_err.c Normal file
View File

@ -0,0 +1,6 @@
#include "parse.h"
int bs_err(struct bytestream* bs) {
return (bs->cur > bs->max);
}