Home
last modified time | relevance | path

Searched refs:inquote (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/bmake/
H A Dstr.c128 char inquote; in Substring_Words() local
148 inquote = '\0'; in Substring_Words()
156 if (inquote != '\0') { in Substring_Words()
157 if (inquote == ch) in Substring_Words()
158 inquote = '\0'; in Substring_Words()
162 inquote = ch; in Substring_Words()
164 if (word_start == NULL && str_p[1] == inquote) { in Substring_Words()
171 inquote = '\0'; in Substring_Words()
184 if (inquote != '\0') in Substring_Words()
207 if (expand && inquote != '\0') { in Substring_Words()
/freebsd/crypto/openssl/util/
H A Dsu-filter.pl72 my $inquote = 0;
91 if($inquote) {
94 $inquote--;
120 $inquote++;
149 $inquote++;
/freebsd/crypto/heimdal/appl/telnet/telnet/
H A Dcommands.c76 int inquote = 0; in makeargv() local
84 if (inquote) { in makeargv()
85 if (c == inquote) { in makeargv()
86 inquote = 0; in makeargv()
94 inquote = '"'; in makeargv()
97 inquote = '\''; in makeargv()
/freebsd/lib/libc/resolv/
H A Dres_mkupdate.c770 int inquote = 0; in getstr_str() local
796 inquote = !inquote; in getstr_str()
827 } else if (!inquote && isspace(c)) in getstr_str()
/freebsd/contrib/telnet/telnet/
H A Dcommands.c169 int inquote = 0; in makeargv() local
177 if (inquote) { in makeargv()
178 if (c == inquote) { in makeargv()
179 inquote = 0; in makeargv()
187 inquote = '"'; in makeargv()
190 inquote = '\''; in makeargv()
/freebsd/contrib/tcsh/
H A Ded.chared.c793 Char inquote = 0; in c_endword() local
804 if (inquote || p[-1] != (Char)'\\') { /* Should it be honored? */ in c_endword()
805 if (inquote == 0) inquote = *p; in c_endword()
806 else if (inquote == *p) inquote = 0; in c_endword()
810 if (!inquote && Strchr(delim, *p) && p[-1] != (Char)'\\') in c_endword()