diff options
author | taiyu <taiyu.len@gmail.com> | 2015-09-22 09:41:32 -0700 |
---|---|---|
committer | taiyu <taiyu.len@gmail.com> | 2015-09-22 09:41:32 -0700 |
commit | 494499617090eccf73a0c75380ca884e77548a9f (patch) | |
tree | 46356ae7b43ce6a2ea133771784a072294918f78 /include | |
parent | 6c33f8122a3c4bb8fc22129d1d2ad03f535885f7 (diff) | |
parent | 72aaffcf5b96f7d20438191e17c1df7174e52e66 (diff) | |
download | sway-494499617090eccf73a0c75380ca884e77548a9f.tar.xz |
Merge branch 'master' of https://github.com/taiyu-len/sway
merge
Diffstat (limited to 'include')
-rw-r--r-- | include/commands.h | 16 | ||||
-rw-r--r-- | include/stringop.h | 8 |
2 files changed, 16 insertions, 8 deletions
diff --git a/include/commands.h b/include/commands.h index 5c87be51..1b4cd9ca 100644 --- a/include/commands.h +++ b/include/commands.h @@ -3,13 +3,15 @@ #include <stdbool.h> #include "config.h" -struct cmd_handler { - char *command; - enum cmd_status { - CMD_SUCCESS, - CMD_FAILURE, - CMD_DEFER, - } (*handle)(int argc, char **argv); + +enum cmd_status { + CMD_SUCCESS, + CMD_FAILURE, + CMD_INVALID, + CMD_DEFER, + // Config Blocks + CMD_BLOCK_END, + CMD_BLOCK_MODE, }; enum cmd_status handle_command(char *command); diff --git a/include/stringop.h b/include/stringop.h index f9f3130c..49bfa771 100644 --- a/include/stringop.h +++ b/include/stringop.h @@ -8,10 +8,11 @@ extern int setenv(const char *, const char *, int); #endif // array of whitespace characters to use for delims -extern const char *whitespace; +extern const char whitespace[]; char *strip_whitespace(char *str); char *strip_comments(char *str); +void strip_quotes(char *str); // Simply split a string with delims, free with `free_flat_list` list_t *split_string(const char *str, const char *delims); @@ -27,5 +28,10 @@ int unescape_string(char *string); char *join_args(char **argv, int argc); char *join_list(list_t *list, char *separator); +// split string into 2 by delim. +char *cmdsep(char **stringp, const char *delim); +// Split string into 2 by delim, handle quotes +char *argsep(char **stringp, const char *delim); + char *strdup(const char *); #endif |