Moves the terminal's cursor from (lasty,lastx) to (newy,newx).
#include <curses.h> int mvcur (int lasty, int lastx, int newy, int newx);
See also move in this section.
OK | Indicates success. |
ERR | Indicates that moving the window put part or all of the window off the edge of the terminal screen. The terminal screen remains unaltered. |