home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
c
/
cnews007.arc
/
NEWSFILE.ARC
/
CLSTEST.C
< prev
Wrap
Text File
|
1988-05-04
|
326b
|
14 lines
#include <stdio.h>
#include <dos.h>
void extern fast_cls(); /* declare function to be external to the main
program file */
main()
{
register int loop;
for (loop=0; loop<2000; loop++) /* fill screen with asterisks */
printf("*");
sleep(1); /* wait a sec */
fast_cls();
}