home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / turbo_c / tctimer.arc / TCTIMER.H < prev    next >
Text File  |  1988-08-10  |  422b  |  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.