1curs_in_wch(3X) curs_in_wch(3X)
2
3
4
6 in_wch, mvin_wch, mvwin_wch, win_wch - extract a complex character and
7 rendition from a window
8
10 #include <curses.h>
11
12 int in_wch(cchar_t *wcval);
13 int mvin_wch(int y, int x, cchar_t *wcval);
14 int mvwin_wch(WINDOW *win, int y, int x, cchar_t *wcval);
15 int win_wch(WINDOW *win, cchar_t *wcval);
16
18 These functions extract the complex character and rendition from the
19 current position in the named window into the cchar_t object referenced
20 by wcval.
21
23 No errors are defined in the XSI Curses standard. This implementation
24 checks for null pointers, returns ERR in that case. Also, the mv rou‐
25 tines check for error moving the cursor, returning ERR in that case.
26 Otherwise they return OK
27
29 Note that all of these routines may be macros.
30
32 These functions are described in the XSI Curses standard, Issue 4.
33
35 curses(3X), curs_inch(3X).
36
37
38
39 curs_in_wch(3X)