home *** CD-ROM | disk | FTP | other *** search
- NAME
- winsertln() insertln() mvinsertln() mvwinsertln() - insert a blank line
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int winsertln(win)
- WINDOW *win;
-
- int insertln()
-
- int mvinsert(y,x)
- int y;
- int x;
-
- int mvwinsert(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- winsertln() inserts a blank line instead of the cursor line
- in window 'win' and pushes other lines down.
-
- insertln() inserts a blank line instead of the cursor line
- in stdscr and pushes other lines down.
-
- mvinsertln() moves the stdscr cursor to a new positions, in-
- serts a blank line instead of the cursor line and pushes
- other lines down.
-
- mvwinsertln() moves the cursor in window 'win' to a new posi-
- tions, inserts a blank line instead of the cursor line and
- pushes other lines down.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-