| 565 | } |
| 566 | |
| 567 | static bool is_space_codepoint(char32_t cp) { |
| 568 | return std::iswspace(static_cast<wint_t>(cp)) != 0; |
| 569 | } |
| 570 | |
| 571 | static void move_word_left(size_t & char_pos, size_t & byte_pos, const std::vector<int> & widths, const std::string & line) { |
| 572 | if (char_pos == 0) { |
no outgoing calls
no test coverage detected