Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

32 lines
648 B
C

/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#ifndef lint
static char sccsid[] = "@(#)move.c 1.1 92/07/30 SMI"; /* from UCB 5.2 85/10/08 */
#endif not lint
# include "curses.ext"
/*
* This routine moves the cursor to the given point
*
*/
wmove(win, y, x)
reg WINDOW *win;
reg int y, x; {
# ifdef DEBUG
fprintf(outf, "MOVE to (%d, %d)\n", y, x);
# endif
if (x < 0 || y < 0)
return ERR;
if (x >= win->_maxx || y >= win->_maxy)
return ERR;
win->_curx = x;
win->_cury = y;
return OK;
}