| 218 | } |
| 219 | |
| 220 | void |
| 221 | term_clear_screen(void) |
| 222 | { |
| 223 | if (!iflags.grmode) { |
| 224 | txt_clear_screen(); |
| 225 | #ifdef SCREEN_VGA |
| 226 | } else if (iflags.usevga) { |
| 227 | vga_clear_screen(BACKGROUND_VGA_COLOR); |
| 228 | #endif |
| 229 | #ifdef SCREEN_VESA |
| 230 | } else if (iflags.usevesa) { |
| 231 | vesa_clear_screen(BACKGROUND_VESA_COLOR); |
| 232 | #endif |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | void cl_end(void) /* clear to end of line */ |
| 237 | { |
no test coverage detected