TickCL and TockCL
TickCL routine resets CCATSL's centi-second timer. TockCL returns the number
of centi-seconds since the previous call to TickCL.
|
TickCL(); .... /* time this code */ time_taken=TockCL(); /* return type is int */ |
WaitCL
This routine pauses execution of the program for a specified number of seconds. See also
PauseCL.
| void WaitCL ( |
double t); |
| t |
The number of seconds to pause for. |