Curses Library Functions cursmove(3CURSES)
NAME
cursmove, move, wmove - move curses window cursor
SYNOPSIS
cc [ flag ... ] file ... -lcurses [ library ... ]
#include
int move(int y, int x);
int wmove(WINDOW *win, int y, int x);
DESCRIPTION
With these routines, the cursor associated with the window
is moved to line y and column x. This routine does not move
the physical cursor of the terminal until refresh() is
called. The position specified is relative to the upper
left-hand corner of the window, which is (0,0).
RETURN VALUES
These routines return the integer ER upon failure and an
integer value other than ER upon successful completion.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
MT-Level Unsafe
SEE ALSO
cursrefresh(3CURSES), curses(3CURSES), attributes(5)
NOTES
The header automatically includes the headers
and .
Note that move() may be a macro.
SunOS 5.11 Last change: 31 Dec 1996 1
|