Deletes lines in a window.
Curses Library (libcurses.a)
#include <curses.h>
int deleteln(void);
int wdeleteln(WINDOW *win);
The deleteln and wdeleteln subroutines delete the line containing the cursor in the current or specified window and move all lines following the current line one line toward the cursor. The last line of the window is cleared. The cursor position does not change.
*win | Specifies the window in which to delete the line. |
Upon successful completion, these subroutines return OK. Otherwise, they return ERR.
deleteln();
WINDOW *my_window; wdeleteln(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.