home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* Scroll the screen by 6 lines up */
- /************************************************************************/
-
- sample_scroll_page()
- {
- int i;
- for (i = 0; i < 25; i++) /* Fill screen with data */
- printf("\nThis is line %d",i);
-
- getchar(); /* Wait for <Enter> */
- scroll_page( 6); /* Scroll page up by 6 rows */
- }