* If the next data matches the 8-bit char 'c', then skip it. */
| 483 | * If the next data matches the 8-bit char 'c', then skip it. |
| 484 | */ |
| 485 | void SkipCharIf(char c) |
| 486 | { |
| 487 | return this->SkipIf({&c, 1}); |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * Check whether the next UTF-8 char matches 'c'. |
no test coverage detected