Fixed inconsistent signature of charset parser, registered (still stubbed) unit tests so the build doesn't break :)

This commit is contained in:
Meredith L. Patterson 2012-05-11 15:24:22 +01:00
parent 602ea6d510
commit 7080d732c1
2 changed files with 41 additions and 1 deletions

View file

@ -132,7 +132,7 @@ const parser_t* whitespace(const parser_t* p);
const parser_t* left_factor_action(const parser_t* p);
/* Parse a single character *NOT* in charset */
const parser_t* notin(const uint8_t charset, int length);
const parser_t* notin(const uint8_t *options, int count);
/* A no-argument parser that succeeds if there is no more input to parse. */
const parser_t* end_p();