home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 3 / deleteln.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  1.0 KB  |  47 lines

  1. NAME
  2.     wdeleteln() deleteln() mvdeleteln() mvwdeleteln() - delete a line
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int wdeleteln(win)
  9.     WINDOW *win;
  10.  
  11.     int deleteln()
  12.  
  13.     int mvdeleteln(y,x)
  14.     int y;
  15.     int x;
  16.  
  17.     int mvwdeleteln(win,y,x)
  18.     WINDOW *win;
  19.     int y;
  20.     int x;
  21.  
  22. DESCRIPTION
  23.     wdeleteln() deletes the line at the window cursor, and the  
  24.     lines below it are shifted up, inserting a blank line at  
  25.     the bottom of the window.  
  26.  
  27.     deleteln() deletes the line at the stdscr cursor, and the  
  28.     lines below it are shifted up, inserting a blank line at  
  29.     the bottom of stdscr.  
  30.  
  31.     mvdeleteln() moves the cursor to a new position in stdscr,  
  32.     then deletes the line at the window cursor, and the lines  
  33.     below it are shifted up, inserting a blank line at the bot-  
  34.     tom of stdscr.  
  35.  
  36.     mvwdeleteln() moves the cursor to a new position in a win-  
  37.     dow, then deletes the line at the window cursor, and the  
  38.     lines below it are shifted up, inserting a blank line at  
  39.     the bottom of the window.  
  40.  
  41. EXAMPLES
  42.  
  43. SEE ALSO
  44.     wmove()  
  45.  
  46. BUGS
  47.