pub unsafe extern "C" fn utf8proc_map_custom(
str_: *const utf8proc_uint8_t,
strlen: utf8proc_ssize_t,
dstptr: *mut *mut utf8proc_uint8_t,
options: utf8proc_option_t,
custom_func: utf8proc_custom_func,
custom_data: *mut c_void,
) -> utf8proc_ssize_tExpand description
Like utf8proc_map(), but also takes a custom_func mapping function
that is called on each codepoint in str before any other transformations
(along with a custom_data pointer that is passed through to custom_func).
The custom_func argument is ignored if it is NULL.