Change the current cursor position on the specified window to the coordinates (y,x). The move function acts on the stdscr window.
#include <curses.h> int move (int y, int x); int wmove (WINDOW *win, int y, int x);
OK | Indicates success. |
ERR | Indicates that the function makes the screen scroll illegally. |