| 134 | //========================================================================== |
| 135 | |
| 136 | char *tolower_normalize(const char *str) |
| 137 | { |
| 138 | utf8proc_uint8_t *retval; |
| 139 | utf8proc_map((const uint8_t*)str, 0, &retval, (utf8proc_option_t)(UTF8PROC_NULLTERM | UTF8PROC_STABLE | UTF8PROC_COMPOSE | UTF8PROC_CASEFOLD)); |
| 140 | return (char*)retval; |
| 141 | } |
| 142 | |
| 143 | //========================================================================== |
| 144 | // |
no outgoing calls
no test coverage detected