summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_scrreg.c
blob: 31bab4f5a96a42cc0d6a301ab7ce7edf9470f646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

/* 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_scrreg.c
**
**	The routine wsetscrreg().
**
*/

#include "curses.priv.h"
#include "terminfo.h"

int wsetscrreg(WINDOW *win, int top, int bottom)
{
	T(("wsetscrreg(%x,%d,%d) called", win, top, bottom));

    	if (top >= 0  && top <= win->_maxy &&
		bottom >= 0  &&  bottom <= win->_maxy &&
		bottom > top)
	{
	    	win->_regtop = top;
	    	win->_regbottom = bottom;

		T(("correctly set scrolling region between %d and %d", top, bottom));

	    	return(OK);
	} else
	    	return(ERR);
}
OpenPOWER on IntegriCloud