freebsd-dev/lib/libncurses/lib_move.c
1994-12-02 06:40:24 +00:00

31 lines
550 B
C

/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for *
* details. If they are missing then this copy is in violation of *
* the copyright conditions. */
/*
** lib_move.c
**
** The routine wmove().
**
*/
#include "curses.priv.h"
int
wmove(WINDOW *win, int y, int x)
{
T(("wmove(%x,%d,%d) called", win, y, x));
if (x >= 0 && x <= win->_maxx &&
y >= 0 && y <= win->_maxy)
{
win->_curx = x;
win->_cury = y;
win->_flags |= _HASMOVED;
return(OK);
} else
return(ERR);
}