| 214 | /////////////////////////////////////////// |
| 215 | |
| 216 | void submit_chars(const char *utf8) { |
| 217 | if (utf8 == nullptr) return; |
| 218 | |
| 219 | char32_t c = 0; |
| 220 | while (utf8_decode_fast_b(utf8, &utf8, &c)) { |
| 221 | input_text_inject_char(c); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | /////////////////////////////////////////// |
| 226 |
no test coverage detected