delch, mvdelch, mvwdelch, wdelch - delete a character from a window.
#include <curses.h> int delch(void); int mvdelch(int y, int x); int mvwdelch(WINDOW *win, int y, int x); int wdelch(WINDOW *win);
These functions delete the character at the current or specified position in the current or specified window. This function does not change the cursor position.
Upon successful completion, these functions return OK. Otherwise, they return ERR.
No errors are defined.
<curses.h>.