home *** CD-ROM | disk | FTP | other *** search
- NAME
- wdeleteln() deleteln() mvdeleteln() mvwdeleteln() - delete a line
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int wdeleteln(win)
- WINDOW *win;
-
- int deleteln()
-
- int mvdeleteln(y,x)
- int y;
- int x;
-
- int mvwdeleteln(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- wdeleteln() deletes the line at the window cursor, and the
- lines below it are shifted up, inserting a blank line at
- the bottom of the window.
-
- deleteln() deletes the line at the stdscr cursor, and the
- lines below it are shifted up, inserting a blank line at
- the bottom of stdscr.
-
- mvdeleteln() moves the cursor to a new position in stdscr,
- then deletes the line at the window cursor, and the lines
- below it are shifted up, inserting a blank line at the bot-
- tom of stdscr.
-
- mvwdeleteln() moves the cursor to a new position in a win-
- dow, then deletes the line at the window cursor, and the
- lines below it are shifted up, inserting a blank line at
- the bottom of the window.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-