home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 471 / rccl156 < prev    next >
Text File  |  1987-03-02  |  218b  |  16 lines

  1. #ifndef REAL
  2. {
  3.     static int cc = 0, cmax = 0, ot = 0;
  4.  
  5.     if (rtime != ot) {
  6.         ot = rtime;
  7.         printf("%s %d %d %d\n", STRING, ot, cc, cmax);
  8.         if (cc > cmax) {
  9.             cmax = cc;
  10.         }
  11.         cc = 0;
  12.     }
  13.     ++cc;
  14. }
  15. #endif
  16.