home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 2 / clrbot.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  842 b   |  43 lines

  1. NAME
  2.     wclrtobot() clrbot() mvclrtobot() mvwclrtobot() - clear to bottom 
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int wclrtobot(win)
  9.     WINDOW *win;
  10.  
  11.     int clrbot()
  12.  
  13.     int mvclrtobot(y,x)
  14.     int y;
  15.     int x;
  16.  
  17.     int mvwclrtobot(win,y,x)
  18.     WINDOW *win;
  19.     int y;
  20.     int x;
  21.  
  22. DESCRIPTION
  23.     wclrtobot() fills the right half of the cursor line of  
  24.     window 'win', and all lines below it with blanks.  
  25.  
  26.     clrbot() fills the right half of the cursor line of  
  27.     stdscr, and all lines below it with blanks.  
  28.  
  29.     mvclrtobot() moves the cursor to a new position in stdscr  
  30.     and fills the right half of the cursor line, and all lines  
  31.     below it with blanks.  
  32.  
  33.     mvwclrtobot() moves the cursor to a new position in window  
  34.     'win', and fills the right half of the cursor line, and all  
  35.     lines below it with blanks.  
  36.  
  37. EXAMPLES
  38.  
  39. SEE ALSO
  40.     wmove()  
  41.  
  42. BUGS
  43.