keyboard.h 228 B

12345678910111213
  1. #pragma once
  2. #include <types/types.h>
  3. int32_t keyboard_has_data(void);
  4. void process_keyboard_data(void);
  5. #ifdef __cplusplus
  6. extern "C" void handle_keyboard_interrupt(void);
  7. #else
  8. void handle_keyboard_interrupt(void);
  9. #endif