| 202 | } |
| 203 | |
| 204 | void |
| 205 | backsp(void) |
| 206 | { |
| 207 | if (!iflags.grmode) { |
| 208 | txt_backsp(); |
| 209 | #ifdef SCREEN_VGA |
| 210 | } else if (iflags.usevga) { |
| 211 | vga_backsp(); |
| 212 | #endif |
| 213 | #ifdef SCREEN_VESA |
| 214 | } else if (iflags.usevesa) { |
| 215 | vesa_backsp(); |
| 216 | #endif |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | void |
| 221 | term_clear_screen(void) |
nothing calls this directly
no test coverage detected