| 21 | std::string Term::cursor_off() { return "\x1b[?25l"; } |
| 22 | |
| 23 | std::string Term::cursor_on() { return "\x1b[?25h"; } |
| 24 | |
| 25 | std::string Term::clear_screen() { return "\033[2J"; } |
| 26 | std::string Term::clear_buffer() { return "\033[3J"; } |
nothing calls this directly
no outgoing calls
no test coverage detected