| 396 | #endif |
| 397 | |
| 398 | std::vector<char16_t> getChar16VectorFromUTF16String(const std::u16string& utf16) |
| 399 | { |
| 400 | return std::vector<char16_t>(utf16.begin(), utf16.end()); |
| 401 | } |
| 402 | |
| 403 | size_t getCharacterCountInUTF8String(std::string_view utf8) |
| 404 | { |
no test coverage detected