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

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