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

  1. NAME
  2.     winsertln() insertln() mvinsertln() mvwinsertln() - insert a blank line
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int winsertln(win)
  9.     WINDOW *win;
  10.  
  11.     int insertln()
  12.  
  13.     int mvinsert(y,x)
  14.     int y;
  15.     int x;
  16.  
  17.     int mvwinsert(win,y,x)
  18.     WINDOW *win;
  19.     int y;
  20.     int x;
  21.  
  22. DESCRIPTION
  23.     winsertln() inserts a blank line instead of the cursor line  
  24.     in window 'win' and pushes other lines down.  
  25.  
  26.     insertln() inserts a blank line instead of the cursor line  
  27.     in stdscr and pushes other lines down.  
  28.  
  29.     mvinsertln() moves the stdscr cursor to a new positions, in-  
  30.     serts a blank line instead of the cursor line and pushes  
  31.     other lines down.  
  32.  
  33.     mvwinsertln() moves the cursor in window 'win' to a new posi-  
  34.     tions, inserts a blank line instead of the cursor line and  
  35.     pushes other lines down.  
  36.  
  37. EXAMPLES
  38.  
  39. SEE ALSO
  40.     wmove()  
  41.  
  42. BUGS
  43.