FreeBASIC  0.91.0
io_scroll.c
Go to the documentation of this file.
1 /* console scrolling for when VIEW is used */
2 
3 #include "../fb.h"
4 #include "../unix/fb_private_console.h"
5 
6 void fb_ConsoleScroll(int nrows)
7 {
8  fb_hTermOut(SEQ_SCROLL, 0, nrows);
9 }