home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
CNEWS007.ZIP
/
NEWSFILE.ARC
/
CLSTEST.C
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-05-04
|
326 b
|
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();
}