diff options
Diffstat (limited to 'libtxt/inc/keymap.h')
-rw-r--r-- | libtxt/inc/keymap.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libtxt/inc/keymap.h b/libtxt/inc/keymap.h deleted file mode 100644 index 9f1966e..0000000 --- a/libtxt/inc/keymap.h +++ /dev/null @@ -1,16 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef KEYMAP_H -#define KEYMAP_H - -#define KEYMAP_LENGTH 90 - -struct keymap { - char map[KEYMAP_LENGTH]; - char shift_map[KEYMAP_LENGTH]; - char alt_map[KEYMAP_LENGTH]; -}; - -struct keymap *keymap_parse(const char *path); - -#endif |