| 304 | } |
| 305 | |
| 306 | static void replace_last(char ch) { |
| 307 | #if defined(_WIN32) |
| 308 | pop_cursor(); |
| 309 | put_codepoint(&ch, 1, 1); |
| 310 | #else |
| 311 | fprintf(out, "\b%c", ch); |
| 312 | #endif |
| 313 | } |
| 314 | |
| 315 | static void append_utf8(char32_t ch, std::string & out) { |
| 316 | if (ch <= 0x7F) { |
no test coverage detected