The srcl set of routines is used to scroll a window.
Syntax |
 |
#include <curses.h>
int scrl (int n);
int wscrl (WINDOW *win, int n);
int scroll (WINDOW *win);
|
Parameters |
 |
- win
A pointer to the window in which to scroll.
- n
The number and direction of lines to scroll.
Return Values |
 |
- OK
Successful completion.
- ERR
An error occurred.
Implementation Considerations |
 |
The scroll() routine is identical to XPG/3.
The wscrl() and scrl() routines are UNIX System V implementations.
See Also |
 |
scrollok(), waddch()
Portability |
 |
The scroll() routine conforms to HP-UX, UNIX System
V, and XPG/3.
The wscrl() and scrl() routines conform to UNIX System V.