Lines Matching full:stopchar
2142 /* Search STRING for an unquoted STOPCHAR or blank (if BLANK is nonzero).
2143 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
2145 itself. Returns a pointer to the first unquoted STOPCHAR if there is
2149 STOPCHAR _cannot_ be '$' if IGNOREVARS is true. */
2227 /* All the backslashes quoted each other; the STOPCHAR was
2231 /* The STOPCHAR was quoted by a backslash. Look for another. */
2238 /* Never hit a STOPCHAR or blank (with BLANK nonzero). */
2256 not parsed, which either is a null char or equals STOPCHAR.
2265 parse_file_seq (char **stringp, int stopchar, unsigned int size, int strip)
2285 if (*p == stopchar)
2290 p = find_char_unquote (q, stopchar, VMS_COMMA, 1, 0);
2297 if (stopchar == ':' && p && *p == ':'
2301 p = find_char_unquote (p+1, stopchar, VMS_COMMA, 1, 0);
2309 if (stopchar == ':')
2312 p = find_char_unquote (p + 1, stopchar, VMS_COMMA, 1, 0);