diff options
author | uint23 <[email protected]> | 2025-05-03 09:09:09 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-05-03 09:09:47 +0100 |
commit | 1743a7c340ee17fb8d3e41fa2a777bcadcb1a867 (patch) | |
tree | e5e282e7f72e5581b689c75fb424f00a50779420 /src/parser.h | |
parent | 01736e075e1348c539abd7066cd0a741a61710df (diff) |
update parser so binds will not overlap from pervious binds + parser is more simple
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/parser.h b/src/parser.h index 15f82d0..2e132fe 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,9 +1,8 @@ -/* See LICENSE for more information on use */ #pragma once #include "defs.h" #define MAX_ARGS 64 -void handler(char *command, char *arg, int mods, KeySym keysym, Action action, Bool is_func, Config *user_config); +const char **build_argv(const char *cmd); int parser(Config *user_config); -unsigned int parse_mods(const char *mods, Config *user_config); -KeySym parse_keysym(const char *key); +int parse_mods(const char *mods, Config *user_config); +KeySym parse_keysym(const char *key);
\ No newline at end of file |