 |
» |
|
|
|
The move and wmove routines are used to move the cursor in the window. Syntax |  |
#include <curses.h>
int move(int y, int x);
int wmove(WINDOW *win, int y, int x);
|
Parameters |  |
- win
A pointer to the window in which the cursor is to be written. - x
The x (column) coordinate of the position of the cursor in the window. - y
The y (row) coordinate of the position of the cursor in the window.
Return Values |  |
- OK
Successful completion.
- ERR
An error occurred. The cursor is outside the window boundary.
Implementation Considerations |  |
Identical to XPG/3 See Also |  |
doupdate(), wrefresh() Portability |  |
HP-UX, UNIX System V, XPG/3
|