home *** CD-ROM | disk | FTP | other *** search
- NAME
- wclrtoeol() clrtoeol() mvclrtoeol() mvwclrtoeol() - clear to end of line
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int wclrtoeol(win)
- WINDOW *win;
-
- int clrtoeol()
-
- int mvcltoreol(y,x)
- int y;
- int x;
-
- int mvwclrtoeol(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- wclrtoeol() fills the half of the cursor line to the right
- of the cursor in window 'win' with blanks.
-
- clrtoeol() fills the half of the cursor line to the right
- of the cursor in stdscr with blanks.
-
- mvclrtoeol() moves the cursor to a new position in stdscr
- and fills the right half of the cursor line with blanks.
-
- mvwclrtoeol() moves the cursor to a new position in window
- 'win', and fills the right half of the cursor line with
- blanks.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-