timer.h 181 B

123456789101112
  1. #ifndef TIMER_H
  2. #define TIMER_H
  3. #include <stdint.h>
  4. void timer_init();
  5. uint64_t get_time_us();
  6. void set_delta();
  7. uint64_t get_delta();
  8. void micro_sleep(int x);
  9. #endif