home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / FSGFX.ZIP / G_CLRSCN.C < prev    next >
C/C++ Source or Header  |  1990-03-06  |  184b  |  13 lines

  1. /* g_clrscn.c */
  2. /* clear the graphics screen */
  3.  
  4. #include "mygraph.h"
  5.  
  6. int g_clrscn(void)
  7. {
  8.     register unsigned int i;
  9.     for(i = 0; i< 28000; i++)
  10.         pchscreen[i] = 0x00;
  11. }
  12.  
  13.