diff options
author | Richard Maw <richard.maw@codethink.co.uk> | 2015-06-23 16:26:49 +0000 |
---|---|---|
committer | Richard Maw <richard.maw@codethink.co.uk> | 2015-08-07 15:50:42 +0000 |
commit | 12ba2c44dde4d7cfc0e531dbc3cbd0581c323637 (patch) | |
tree | 181b657b7857a5c460ada046a6f59143ba5e250a /src/basic/util.h | |
parent | 6868560773ada8ea31d1f86422be6bf026a1f660 (diff) |
util: Don't interpret quotes by default in extract_first_word
This adds an EXTRACT_QUOTES option to allow the previous behaviour, of
not interpreting any character inside ' or " quotes as separators.
Diffstat (limited to 'src/basic/util.h')
-rw-r--r-- | src/basic/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/util.h b/src/basic/util.h index a5d035b8bd..82fb771e20 100644 --- a/src/basic/util.h +++ b/src/basic/util.h @@ -858,6 +858,7 @@ typedef enum ExtractFlags { EXTRACT_RELAX = 1, EXTRACT_CUNESCAPE = 2, EXTRACT_CUNESCAPE_RELAX = 4, + EXTRACT_QUOTES = 8, } ExtractFlags; int extract_first_word(const char **p, char **ret, const char *separators, ExtractFlags flags); |