* Skip data until the first occurrence of 8-bit char 'c'. * @param c Separator char. * @param sep Whether to also skip 'c'. */
| 772 | * @param sep Whether to also skip 'c'. |
| 773 | */ |
| 774 | void SkipUntilChar(char c, SeparatorUsage sep) |
| 775 | { |
| 776 | this->SkipUntil({&c, 1}, sep); |
| 777 | } |
| 778 | |
| 779 | /** |
| 780 | * Peek data until the first occurrence of UTF-8 char 'c'. |
no test coverage detected