The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

move, wmove - window cursor location functions

 SYNOPSIS



#include <curses.h>

int move(int y, int x);

int wmove(WINDOW *win, int y, int x);

 DESCRIPTION

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.

 RETURN VALUE

Upon successful completion, these functions return OK. Otherwise, they return ERR.

 ERRORS

No errors are defined.

 SEE ALSO

doupdate(), <curses.h>.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]