Moves a window or subwindow to the specified coordinates.
Curses Library (libcurses.a)
#include <curses.h>
int mvwin
(WINDOW *win,
int y,
int x);
The mvwin subroutine moves the specified window so that its origin is at position (y, x). If the move causes any portion of the window to extend past any edge of the screen, the function fails and the window is not moved.
Item | Description |
---|---|
*win | |
x | |
y |
Upon successful completion, the mvwin subroutine returns OK. Otherwise, it returns ERR.
WINDOW *my_window;
mvwin(my_window, 0, 0);
WINDOW *my_window;
mvwin(my_window, 20, 10);