home *** CD-ROM | disk | FTP | other *** search
- /* timer.h
- * Include file defining the timer routines.
- * Include this file in any program using them.
- */
-
- /*Calculate time elapsed (in milliseconds) between Start and Stop*/
- unsigned long elapsedtime(long start, long stop);
-
- /*Reprogram the timer chip to allow 1 millisecond resolution*/
- void initializetimer(void);
-
- /*Restore the timer chip to its normal state*/
- void restoretimer(void);
-
- /*Read the timer with 1 millisecond resolution*/
- long readtimer(void);
-