7 lines
95 B
C
7 lines
95 B
C
#include "parse.h"
|
|
|
|
int bs_err(const struct bytestream* bs) {
|
|
return (bs->cur > bs->max);
|
|
}
|
|
|