|
X/Open Curses Library Functions | deleteln(3XCURSES) |
| deleteln, wdeleteln - remove a line |
SYNOPSIS
|
#include <curses.h> int deleteln(void); |
| int wdeleteln(WINDOW *win); |
|
The deleteln() and wdeleteln() functions delete the line containing the cursor from stdscr and win, respectively.
All lines below the one deleted are moved up one line. The last line of the window becomes blank. The position of the cursor is unchanged.
|
|
-
win
- Is a pointer to the window from which the line is removed.
|
|
On success, these functions return OK. Otherwise, they return ERR.
|
| |