| 575 | } |
| 576 | |
| 577 | static bool is_space_codepoint(char32_t cp) { |
| 578 | return std::iswspace(static_cast<wint_t>(cp)) != 0; |
| 579 | } |
| 580 | |
| 581 | static void move_word_left(size_t & char_pos, size_t & byte_pos, const std::vector<int> & widths, const std::string & line) { |
| 582 | if (char_pos == 0) { |
no outgoing calls
no test coverage detected