1curs_delch(3X) curs_delch(3X)
2
3
4
6 delch, wdelch, mvdelch, mvwdelch - delete character under the cursor in
7 a curses window
8
10 #include <curses.h>
11
12 int delch(void);
13 int wdelch(WINDOW *win);
14 int mvdelch(int y, int x);
15 int mvwdelch(WINDOW *win, int y, int x);
16
18 These routines delete the character under the cursor; all characters to
19 the right of the cursor on the same line are moved to the left one
20 position and the last character on the line is filled with a blank.
21 The cursor position does not change (after moving to y, x, if speci‐
22 fied). (This does not imply use of the hardware delete character fea‐
23 ture.)
24
26 All routines return the integer ERR upon failure and an OK (SVr4 speci‐
27 fies only "an integer value other than ERR") upon successful comple‐
28 tion.
29
31 Note that delch, mvdelch, and mvwdelch may be macros.
32
34 These functions are described in the XSI Curses standard, Issue 4. The
35 standard specifies that they return ERR on failure, but specifies no
36 error conditions.
37
39 curses(3X)
40
41
42
43 curs_delch(3X)