timer.h 176 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. void init_pit(void);
  7. void inc_tick(void);
  8. time_t current_ticks(void);
  9. #ifdef __cplusplus
  10. }
  11. #endif