1234567891011121314151617181920212223242526272829303132 |
-
-
- #ifndef _UTILS_TIME_H_
- #define _UTILS_TIME_H_
-
- #if defined(linux) || defined(__APPLE__)
- #include <time.h>
- #include <sys/time.h>
- #endif
-
- extern struct timeval system_timer_start;
- extern struct timeval system_timer_stop;
- extern struct timezone system_timer_tz;
-
-
- unsigned int systemTimerGet();
-
-
- void systemTimerReset();
-
- #endif
|