timer.h 264 B

12345678910111213141516
  1. #ifndef TIMER_H
  2. #define TIMER_H
  3. #include <stdint.h>
  4. #ifdef __linux__
  5. #include <time.h>
  6. #endif
  7. void timer_init();
  8. uint64_t get_time_us();
  9. void set_delta();
  10. uint64_t get_delta();
  11. void micro_sleep(unsigned long x);
  12. unsigned long time_micros();
  13. #endif