You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
196 B
C

#include "parse.h"
size_t bs_consumeleftovers(struct bytestream* bs) {
if (bs->cur >= bs->max)
return 0;
return bs_skip(bs, bs->max - bs->cur);
}
/* bs_skip unit tests cover this too */