move(3) — Subroutines
Digital
NAME
move, wmove − move cursor in window
SYNOPSIS
#include <curses.h>
move(y, x)
wmove(win, y, x)
WINDOW ∗win;
int y, x;
DESCRIPTION
The move routine moves the cursor associated with the default window to the given location (y, x), where y is the row, and x is the column. This routine does not move the physical cursor of the terminal until the refresh routine is called.
The wmove routine moves the cursor associated with the specified window to the given location (y, x). This does not move the physical cursor of the terminal until the wrefresh routine is called.
For both routines, the position specified is relative to the upper left corner of the window, which is (0,0).
The routine move is a macro.