MCPcopy Create free account
hub / github.com/NetHack/NetHack / cl_eos

Function cl_eos

sys/msdos/video.c:256–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254}
255
256void cl_eos(void) /* clear to end of screen */
257{
258 int cy = (int) ttyDisplay->cury + 1;
259
260 if (!iflags.grmode) {
261 txt_cl_eos();
262#ifdef SCREEN_VGA
263 } else if (iflags.usevga) {
264 vga_cl_eos(cy);
265#endif
266#ifdef SCREEN_VESA
267 } else if (iflags.usevesa) {
268 vesa_cl_eos(cy);
269#endif
270 }
271 tty_curs(BASE_WINDOW, (int) ttyDisplay->curx + 1, (int) ttyDisplay->cury);
272}
273
274void
275cmov(int col, int row)

Callers

nothing calls this directly

Calls 4

txt_cl_eosFunction · 0.85
vga_cl_eosFunction · 0.85
vesa_cl_eosFunction · 0.85
tty_cursFunction · 0.85

Tested by

no test coverage detected