| 13 | } |
| 14 | |
| 15 | int main(void) |
| 16 | { |
| 17 | utf8proc_uint8_t input[] = {0x41,0x61,0x53,0x62,0xef,0xbd,0x81,0x00}; /* "AaSb\uff41" */ |
| 18 | utf8proc_uint8_t correct[] = {0x61,0x62,0x73,0x73,0x62,0x61,0x00}; /* "abssba" */ |
| 19 | utf8proc_uint8_t *output; |
| 20 | utf8proc_map_custom(input, 0, &output, UTF8PROC_CASEFOLD | UTF8PROC_COMPOSE | UTF8PROC_COMPAT | UTF8PROC_NULLTERM, |
| 21 | custom, &thunk_test); |
| 22 | check_compare("map_custom", input, correct, output, 1); |
| 23 | printf("map_custom tests SUCCEEDED.\n"); |
| 24 | return 0; |
| 25 | } |
nothing calls this directly
no test coverage detected