1curs_move(3X) curs_move(3X)
2
3
4
6 move, wmove - move curses window cursor
7
9 #include <curses.h>
10
11 int move(int y, int x);
12 int wmove(WINDOW *win, int y, int x);
13
15 These routines move the cursor associated with the window to line y and
16 column x. This routine does not move the physical cursor of the termiā
17 nal until refresh(3X) is called. The position specified is relative to
18 the upper left-hand corner of the window, which is (0,0).
19
21 These routines return ERR upon failure and OK (SVr4 specifies only "an
22 integer value other than ERR") upon successful completion.
23
24 Specifically, they return an error if the window pointer is null, or if
25 the position is outside the window.
26
28 Note that move may be a macro.
29
31 These functions are described in the XSI Curses standard, Issue 4.
32
34 curses(3X), curs_refresh(3X)
35
36
37
38 curs_move(3X)