| 397 | } |
| 398 | |
| 399 | UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_tolower(utf8proc_int32_t c) |
| 400 | { |
| 401 | utf8proc_int32_t cl = utf8proc_get_property(c)->lowercase_seqindex; |
| 402 | return cl != UINT16_MAX ? seqindex_decode_index((utf8proc_uint32_t)cl) : c; |
| 403 | } |
| 404 | |
| 405 | UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_toupper(utf8proc_int32_t c) |
| 406 | { |
no test coverage detected