Method: Curses.clrtoeol

Defined in:
ext/curses/curses.c

.clrtoeolObject

Clears to the end of line, that the cursor is currently on.



440
441
442
443
444
445
446
# File 'ext/curses/curses.c', line 440

static VALUE
curses_clrtoeol(VALUE self)
{
    curses_stdscr();
    clrtoeol();
    return Qnil;
}