| 3 | #include <wchar.h> |
| 4 | |
| 5 | static int my_unassigned(int c) { |
| 6 | int cat = utf8proc_get_property(c)->category; |
| 7 | return (cat == UTF8PROC_CATEGORY_CN) || (cat == UTF8PROC_CATEGORY_CO); |
| 8 | } |
| 9 | |
| 10 | static int my_isprint(int c) { |
| 11 | int cat = utf8proc_get_property(c)->category; |
no test coverage detected