Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
kilo/include/input.h
2023-09-04 20:54:59 +05:00

26 lines
339 B
C

#ifndef INPUT_H
#define INPUT_H
#include <stdint.h>
enum KEYS {
TAB = 9,
ENTER = 13,
ESCAPE = 27,
BACKSPACE = 127,
HOME = 0x100,
DEL,
PG_UP,
PG_DOWN,
END,
ARROW_UP,
ARROW_DOWN,
ARROW_LEFT,
ARROW_RIGHT,
NOP
};
typedef uint16_t KEY;
void input_process_key(void);
#endif // INPUT_H