home *** CD-ROM | disk | FTP | other *** search
- NAME
- wdelch() delch() mvdelch() mvwdelch() - delete a character
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int wdelch(win)
- WINDOW *win;
-
- int delch()
-
- int mvdelch(y,x)
- int y;
- int x;
-
- int mvwdelch(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- wdelch() deletes the character at the window cursor, and the
- characters to the right of it are shifted left, inserting a
- space at the last position of the line.
-
- delch() deletes the character at the stdscr cursor, and the
- characters to the right of it are shifted left, inserting a
- space at the last position of the line.
-
- mvdelch() moves the stdscr cursor to a new position, then
- deletes the character at the stdscr cursor, and the charac-
- ters to the right of it are shifted left, inserting a space
- at the last position of the line.
-
- mvwdelch() moves the cursor of window 'win' to a new posi-
- tion, then deletes the character at the stdscr cursor, and
- the characters to the right of it are shifted left, inser-
- ting a space at the last position of the line.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-