#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);
These subroutines are part of Base Operating System (BOS) Runtime.
Curses Overview for Programming in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
Manipulating Characters with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.