| 225 | } |
| 226 | |
| 227 | static int lex_space(struct sbg_parser *p) |
| 228 | { |
| 229 | char *c = p->cursor; |
| 230 | |
| 231 | while (p->cursor < p->end && is_space(*p->cursor)) |
| 232 | p->cursor++; |
| 233 | return p->cursor > c; |
| 234 | } |
| 235 | |
| 236 | static int lex_char(struct sbg_parser *p, char c) |
| 237 | { |
no test coverage detected