Lines Matching refs:indx
105 size_t indx = 0; in strcspn_quote() local
114 for (indx = 0; str[indx] != 0; indx++) { in strcspn_quote()
115 if (quote && str[indx] == quote) { in strcspn_quote()
122 (str[indx] == '\'' || str[indx] == '"')) { in strcspn_quote()
123 quote = str[indx]; in strcspn_quote()
127 strchr(exclude, str[indx]) != NULL) in strcspn_quote()
128 return indx; in strcspn_quote()
130 return indx; in strcspn_quote()
159 size_t indx; in remove_quotes() local
160 indx = strcspn(str, quote_chars); in remove_quotes()
161 if (str[indx] == '\0') in remove_quotes()
163 loc = str + indx; in remove_quotes()
164 qc = str[indx]; in remove_quotes()