123456789101112131415161718192021222324252627 |
- #ifndef PROCESS_TERMINAL_H
- #define PROCESS_TERMINAL_H
- #include "quantum.h"
- extern const char keycode_to_ascii_lut[58];
- extern const char shifted_keycode_to_ascii_lut[58];
- extern const char terminal_prompt[8];
- bool process_terminal(uint16_t keycode, keyrecord_t *record);
- #endif
|