Lines Matching defs:QUOTE
447 #define QUOTE "\""
462 split_equals ? WHITESPACE QUOTE "=" : WHITESPACE QUOTE);
468 /* Find matching quote */
469 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
470 return (NULL); /* no matching quote */
2079 int argc = 0, quote, i, j;
2092 quote = 0;
2104 (quote == 0 && s[i + 1] == ' ')) {
2111 } else if (quote == 0 && (s[i] == ' ' || s[i] == '\t'))
2113 else if (quote == 0 && (s[i] == '\"' || s[i] == '\''))
2114 quote = s[i]; /* quote start */
2115 else if (quote != 0 && s[i] == quote)
2116 quote = 0; /* quote end */
2121 if (quote != 0) {
2122 /* Ran out of string looking for close quote */
2638 *errstrp = "missing start quote";
2652 *errstrp = "missing end quote";