diff options
author | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
commit | 6104c0ee7257ae99e5187f56593442ca9f04084b (patch) | |
tree | 437957ae25f7bd1544f6c725425213244d94e704 /input.h | |
parent | a2fe6b4251181b65da4264c179c5df39c22159de (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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |