Lines Matching defs:top
70 * Set the top and bottom of the scrolling region for stdscr.
73 setscrreg(int top, int bottom)
76 return wsetscrreg(stdscr, top, bottom);
81 * Get the top and bottom of the scrolling region for stdscr.
84 getscrreg(int *top, int *bottom)
87 return wgetscrreg(stdscr, top, bottom);
128 * Set the top and bottom of the scrolling region for win.
131 wsetscrreg(WINDOW *win, int top, int bottom)
136 if (top < 0 || bottom >= win->maxy || bottom - top < 1)
138 win->scr_t = top;
145 * Get the top and bottom of the scrolling region for win.
148 wgetscrreg(WINDOW *win, int *top, int *bottom)
153 *top = win->scr_t;