aboutsummaryrefslogtreecommitdiff
path: root/input_field.h
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-12 00:07:02 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-12 00:07:02 -0400
commit60585faf7951cffb6046280bdd5f91275fb97d65 (patch)
tree30aad6fb91d33ed3b9a291d2d3fff7d9ed9a6f0c /input_field.h
parent36d12796644b296f300d9daf631f7702e1d81b86 (diff)
input buffer and key repeat
Diffstat (limited to 'input_field.h')
-rw-r--r--input_field.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/input_field.h b/input_field.h
new file mode 100644
index 0000000..64cb557
--- /dev/null
+++ b/input_field.h
@@ -0,0 +1,9 @@
+#ifndef INPUT_FIELD_H_
+#define INPUT_FIELD_H_
+
+#include "state.h"
+
+void type_key(client_state* state, xkb_keysym_t keysym);
+void submit_line(client_state* state);
+
+#endif