| 11509 | } |
| 11510 | |
| 11511 | inline encoded_result<char32_t> code_point_to_utf32(char32_t codepoint) { |
| 11512 | encoded_result<char32_t> er; |
| 11513 | er.code_units_size = 1; |
| 11514 | er.code_units[0] = codepoint; |
| 11515 | er.error = error_code::ok; |
| 11516 | return er; |
| 11517 | } |
| 11518 | |
| 11519 | template <typename It> |
| 11520 | inline decoded_result<It> utf8_to_code_point(It it, It last) { |