aboutsummaryrefslogtreecommitdiff
path: root/src/locale.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/locale.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/locale.h b/src/locale.h
new file mode 100644
index 0000000..2662cee
--- /dev/null
+++ b/src/locale.h
@@ -0,0 +1,11 @@
+#ifndef SKHD_LOCALE_H
+#define SKHD_LOCALE_H
+
+#include <stdbool.h>
+#include <stdint.h>
+
+uint32_t keycode_from_char(char key);
+uint32_t keycode_from_literal(char *key, unsigned length);
+bool same_string(char *text, unsigned length, const char *match);
+
+#endif