DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

curs_move(S)


curs_move: move, wmove -- move curses window cursor

Syntax

cc ... -lcurses

#include <curses.h>

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

Description

With these routines, the cursor associated with the window is moved to line y and column x. This routine does not move the physical cursor of the terminal until refresh(S) is called. The position specified is relative to the upper left-hand corner of the window, which is (0,0).

Return values

These routines return the integer ERR on failure and an integer value other than ERR on successful completion.

Warning

The header file curses.h automatically includes the header files stdio.h and unctrl.h.

move(S) can be a macro.

Files


/usr/lib/libcurses.a
the library

See also

curses(S), curs_refresh(S)

Standards conformance

move(S) and wmove(S) are not part of any currently supported standard; they were developed by UNIX System Laboratories, Inc. and are maintained by The SCO Group.
© 2003 Caldera International, Inc. All rights reserved.
SCO OpenServer Release 5.0.7 -- 11 February 2003