Method: Curses::Window#clrtoeol

Defined in:
ext/curses/curses.c

#clrtoeolObject

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



1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
# File 'ext/curses/curses.c', line 1963

static VALUE
window_clrtoeol(VALUE obj)
{
    struct windata *winp;

    GetWINDOW(obj, winp);
    wclrtoeol(winp->window);

    return Qnil;
}