diff options
author | Drew DeVault <[email protected]> | 2015-09-29 07:43:50 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-09-29 07:43:50 -0400 |
commit | fe3b85d65ff84133cfbe43c11a5462beddbefaff (patch) | |
tree | 46356ae7b43ce6a2ea133771784a072294918f78 /include/stringop.h | |
parent | d7f8bbd35323e9d83b10ab9fbd8715ec4f1aaa8c (diff) | |
parent | 494499617090eccf73a0c75380ca884e77548a9f (diff) |
Merge pull request #181 from taiyu-len/master
multi command keybinds
Diffstat (limited to 'include/stringop.h')
-rw-r--r-- | include/stringop.h | 8 |
1 files changed, 7 insertions, 1 deletions
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 |