home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / turbo_c / tctimer.arc / TCTIMER.H < prev    next >
Encoding:
Text File  |  1988-08-11  |  422 b   |  17 lines

  1.  
  2. void cardinal(long l, double *result);
  3.  
  4.  
  5. void elapsedtime(long start, long stop, double *result);
  6. /*Calculate time elapsed (in milliseconds) between Start and Stop*/
  7.  
  8. void initializetimer(void);
  9. /*Reprogram the timer chip to allow 1 microsecond resolution*/
  10.  
  11. void restoretimer(void);
  12. /*Restore the timer chip to its normal state*/
  13.  
  14. long readtimer(void);
  15. /*Read the timer with 1 microsecond resolution*/
  16.  
  17.