move, wmove - window cursor location functions
#include <curses.h> int move(int y, int x); int wmove(WINDOW *win, int y, int x);
The move() and wmove() functions move the cursor associated with the current or specified window to (y, x) relative to the window's origin. This function does not move the terminal's cursor until the next refresh operation.
Upon successful completion, these functions return OK. Otherwise, they return ERR.
No errors are defined.
doupdate(), <curses.h>.