| 19 | 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0}; |
| 20 | |
| 21 | static void encode_unknown(cmark_strbuf *buf) { |
| 22 | static const uint8_t repl[] = {239, 191, 189}; |
| 23 | cmark_strbuf_put(buf, repl, 3); |
| 24 | } |
| 25 | |
| 26 | static int utf8proc_charlen(const uint8_t *str, bufsize_t str_len) { |
| 27 | int length, i; |
no test coverage detected