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 int mvins_wch(int y, int x, const cchar_t *wch);
15 int mvwins_wch(WINDOW *win, int y, int x, const cchar_t *wch);
16
18 These routines, insert the complex character wch with rendition before
19 the character under the cursor. All characters to the right of the
20 cursor are moved one space to the right, with the possibility of the
21 rightmost character on the line being lost. The insertion operation
22 does not change the cursor position.
23
25 If successful, these functions return OK. If not, they return ERR.
26
27 Functions with a "mv" prefix first perform a cursor movement using
28 wmove, and return an error if the position is outside the window, or if
29 the window pointer is null.
30
32 No errors are defined.
33
35 curses(3X), curs_insch(3X).
36
37
38
39 curs_ins_wch(3X)