summaryrefslogtreecommitdiff
path: root/input.h
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-03-31 21:30:11 +0200
committerOskar <[email protected]>2024-03-31 21:30:11 +0200
commit6104c0ee7257ae99e5187f56593442ca9f04084b (patch)
tree437957ae25f7bd1544f6c725425213244d94e704 /input.h
parenta2fe6b4251181b65da4264c179c5df39c22159de (diff)
Started integrating the input system. Mainly trying to integrate the
'singles' so far because they will be the easiest.
Diffstat (limited to 'input.h')
-rw-r--r--input.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/input.h b/input.h
index 94c746d..e509ee7 100644
--- a/input.h
+++ b/input.h
@@ -15,4 +15,6 @@
#define _FAIL '?' // final return value from smode_input to indicate an invalid
#define _VALID 0 // this may only be used to mark as valid or invalid from the validate functions
#define _INVALID -1 // this may only be used to mark as valid or invalid from the validate functions
- // _FAIL and _INVALID are sorta tied to eachother \ No newline at end of file
+ // _FAIL and _INVALID are sorta tied to eachother
+
+int smode_input(char *single, char **multiple, uint64_t focus);