home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
C
/
ROBOT03.ZIP
/
RCCL156
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1987-03-02
|
218 b
|
16 lines
#ifndef REAL
{
static int cc = 0, cmax = 0, ot = 0;
if (rtime != ot) {
ot = rtime;
printf("%s %d %d %d\n", STRING, ot, cc, cmax);
if (cc > cmax) {
cmax = cc;
}
cc = 0;
}
++cc;
}
#endif