1curs_ins_wch(3X) curs_ins_wch(3X)
2
3
4
6 ins_wch, mvins_wch, mvwins_wch, wins_wch - insert a complex character
7 and rendition into a window
8
10 #include <curses.h>
11
12 int ins_wch(const cchar_t *wch);
13 int wins_wch(WINDOW *win, const cchar_t *wch);
14
15 int mvins_wch(int y, int x, const cchar_t *wch);
16 int mvwins_wch(WINDOW *win, int y, int x, const cchar_t *wch);
17
19 These routines, insert the complex character wch with rendition before
20 the character under the cursor. All characters to the right of the
21 cursor are moved one space to the right, with the possibility of the
22 rightmost character on the line being lost. The insertion operation
23 does not change the cursor position.
24
26 If successful, these functions return OK. If not, they return ERR.
27
28 Functions with a “mv” prefix first perform a cursor movement using
29 wmove, and return an error if the position is outside the window, or if
30 the window pointer is null.
31
33 No errors are defined.
34
36 curses(3X), curs_insch(3X).
37
38
39
40 curs_ins_wch(3X)