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:
C/C++ Source or Header  |  1988-05-04  |  326 b   |  14 lines

  1. #include    <stdio.h>
  2. #include    <dos.h>
  3.  
  4. void extern fast_cls();      /* declare function to be external to the main
  5.                 program file */
  6.  
  7. main()
  8. {
  9.     register int loop;
  10.     for (loop=0; loop<2000; loop++)  /* fill screen with asterisks */
  11.        printf("*");
  12.     sleep(1);                        /* wait a sec */
  13.     fast_cls();
  14. }