deleteln(3cur)
Name
deleteln, wdeleteln − remove line from window
Syntax
#include <cursesX.h>
int deleteln()
int wdeleteln(win)
WINDOW ∗win;
Description
The deleteln routine deletes the current line of the default window. All lines below the current line are moved up one line. The bottom line of the window is cleared. The cursor position does not change.
The routine wdeleteln deletes the current line of the specified window. All lines below the current line are moved up one line. The bottom line of the window is cleared. The cursor position does not change.
The routine deleteln is a macro.
Return Values
The deleteln and wdeleteln functions return OK on success and ERR on error.