| 810 | } |
| 811 | |
| 812 | UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFC(const utf8proc_uint8_t *str) { |
| 813 | utf8proc_uint8_t *retval; |
| 814 | utf8proc_map(str, 0, &retval, (utf8proc_option_t)(UTF8PROC_NULLTERM | UTF8PROC_STABLE | |
| 815 | UTF8PROC_COMPOSE)); |
| 816 | return retval; |
| 817 | } |
| 818 | |
| 819 | UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKD(const utf8proc_uint8_t *str) { |
| 820 | utf8proc_uint8_t *retval; |
no test coverage detected