| 601 | }; |
| 602 | |
| 603 | static char32_t _io_file_lexfeed_ASCII(SQUserPointer file) |
| 604 | { |
| 605 | StringConsumer &consumer = reinterpret_cast<SQFile *>(file)->GetConsumer(); |
| 606 | return consumer.TryReadUint8().value_or(0); // read as unsigned, otherwise integer promotion breaks it |
| 607 | } |
| 608 | |
| 609 | static char32_t _io_file_lexfeed_UTF8(SQUserPointer file) |
| 610 | { |
nothing calls this directly
no test coverage detected