Inserts a blank line above the current line in a window.
Curses Library (libcurses.a)
#include <curses.h>
int insertln(void)
int winsertln(WINDOW *win);
The insertln and winsertln subroutines insert a blank line before the current line in the current or specified window. The bottom line is no longer displayed. The cursor position does not change.
*win | Specifies the window in which to insert the blank line. |
Upon successful completion, these subroutines return OK. Otherwise, they return ERR.
insertln();
WINDOW *mywindow; winsertln(my_window);
Curses Overview for Programming in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
Manipulating Characters with Curses in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.