home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / time / rawclock.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  389 b   |  26 lines

  1. @node rawclock, time
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <time.h>
  6.  
  7. unsigned long rawclock(void);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. Returns the number of clock tics (18.2 per second) since midnight. 
  13.  
  14. @subheading Return Value
  15.  
  16. The number of tics.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. /* wait 1/4 second */
  22. int i = rawclock()+5;
  23. while (rawclock()<i);
  24. @end example
  25.  
  26.