| delorie.com/djgpp/doc/libc/libc_640.html | search |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <time.h> unsigned long rawclock(void); |
Returns the number of clock tics (18.2 per second) since midnight.
The number of tics.
| ANSI/ISO C | No |
| POSIX | No |
/* wait 1/4 second */ int i = rawclock()+5; while (rawclock()<i); |
| webmaster | delorie software privacy |
| Copyright © 2004 | Updated Apr 2004 |