Window location cursor functions.
int ( x); int wmove (WINDOW *win, int y, int x);
The move and wmove subroutines move the logical cursor associated with the current or specified window to (y, x) relative to the window's origin. This subroutine does not move the cursor of the terminal until the next refresh operation.
y | |
x | |
*win |
Upon successful completion, these subroutines return OK. Otherwise, they return ERR.
move(5, 10);
WINDOW *my_window; wmove(my_window, 5, 10);
These subroutines are part of Base Operating System (BOS) Runtime.
The getch and refresh subroutines.
Controlling the Cursor with Curses, Curses Overview for Programming, List of Curses Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.