| 538 | } |
| 539 | |
| 540 | UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose( |
| 541 | const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, |
| 542 | utf8proc_int32_t *buffer, utf8proc_ssize_t bufsize, utf8proc_option_t options |
| 543 | ) { |
| 544 | return utf8proc_decompose_custom(str, strlen, buffer, bufsize, options, NULL, NULL); |
| 545 | } |
| 546 | |
| 547 | UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_custom( |
| 548 | const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, |
nothing calls this directly
no test coverage detected