home *** CD-ROM | disk | FTP | other *** search
- NAME
- wclrtobot() clrbot() mvclrtobot() mvwclrtobot() - clear to bottom
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int wclrtobot(win)
- WINDOW *win;
-
- int clrbot()
-
- int mvclrtobot(y,x)
- int y;
- int x;
-
- int mvwclrtobot(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- wclrtobot() fills the right half of the cursor line of
- window 'win', and all lines below it with blanks.
-
- clrbot() fills the right half of the cursor line of
- stdscr, and all lines below it with blanks.
-
- mvclrtobot() moves the cursor to a new position in stdscr
- and fills the right half of the cursor line, and all lines
- below it with blanks.
-
- mvwclrtobot() moves the cursor to a new position in window
- 'win', and fills the right half of the cursor line, and all
- lines below it with blanks.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-