diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-01-24 18:33:06 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-01-24 18:33:06 -0500 |
commit | 55ac868898df8acc790dcd2ec56e294e89df5ea1 (patch) | |
tree | b4f10872f5182c8db7fa9629d1567e34e8373ef1 /include/stringop.h | |
parent | ed227f5664196d85194d63d01a5382499867a386 (diff) | |
parent | 32ae26e519eeb6a5108f1d82fe36ce5b6ef65af3 (diff) |
Merge pull request #471 from mikkeloscar/fix-exec-quotes
Add quotes to multiword arguments.
Diffstat (limited to 'include/stringop.h')
-rw-r--r-- | include/stringop.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/stringop.h b/include/stringop.h index bb681bcd..7c29a745 100644 --- a/include/stringop.h +++ b/include/stringop.h @@ -31,6 +31,11 @@ int unescape_string(char *string); char *join_args(char **argv, int argc); char *join_list(list_t *list, char *separator); +/** + * Add quotes around any argv with whitespaces. + */ +void add_quotes(char **argv, int argc); + // split string into 2 by delim. char *cmdsep(char **stringp, const char *delim); // Split string into 2 by delim, handle quotes |