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