| 372 | } |
| 373 | |
| 374 | static utf8proc_int32_t seqindex_decode_index(const utf8proc_uint32_t seqindex) |
| 375 | { |
| 376 | const utf8proc_uint16_t *entry = &utf8proc_sequences[seqindex]; |
| 377 | return seqindex_decode_entry(&entry); |
| 378 | } |
| 379 | |
| 380 | static utf8proc_ssize_t seqindex_write_char_decomposed(utf8proc_uint16_t seqindex, utf8proc_int32_t *dst, utf8proc_ssize_t bufsize, utf8proc_option_t options, int *last_boundclass) { |
| 381 | utf8proc_ssize_t written = 0; |
no test coverage detected