| 415 | } |
| 416 | |
| 417 | UTF8PROC_DLLEXPORT int utf8proc_islower(utf8proc_int32_t c) |
| 418 | { |
| 419 | const utf8proc_property_t *p = utf8proc_get_property(c); |
| 420 | return p->lowercase_seqindex != p->uppercase_seqindex && p->lowercase_seqindex == UINT16_MAX; |
| 421 | } |
| 422 | |
| 423 | UTF8PROC_DLLEXPORT int utf8proc_isupper(utf8proc_int32_t c) |
| 424 | { |
no test coverage detected