| 824 | } |
| 825 | |
| 826 | UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str) { |
| 827 | utf8proc_uint8_t *retval; |
| 828 | utf8proc_map(str, 0, &retval, (utf8proc_option_t)(UTF8PROC_NULLTERM | UTF8PROC_STABLE | |
| 829 | UTF8PROC_COMPOSE | UTF8PROC_COMPAT)); |
| 830 | return retval; |
| 831 | } |
| 832 | |
| 833 | UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC_Casefold(const utf8proc_uint8_t *str) { |
| 834 | utf8proc_uint8_t *retval; |
no test coverage detected