| 403 | } |
| 404 | |
| 405 | UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_toupper(utf8proc_int32_t c) |
| 406 | { |
| 407 | utf8proc_int32_t cu = utf8proc_get_property(c)->uppercase_seqindex; |
| 408 | return cu != UINT16_MAX ? seqindex_decode_index((utf8proc_uint32_t)cu) : c; |
| 409 | } |
| 410 | |
| 411 | UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_totitle(utf8proc_int32_t c) |
| 412 | { |
no test coverage detected