Lines Matching refs:endc
65 static int lexstring(wint_t endc);
66 static int lexregexp(wint_t endc);
71 static size_t lexescape(wint_t endc, int regx, int cmd_line_operand);
868 * `endc' terminates the string.
871 lexstring(wint_t endc)
873 size_t length = lexescape(endc, 0, 0);
883 lexregexp(wint_t endc)
885 (void) lexescape(endc, 1, 0);
907 * Read a string or regular expression, terminated by ``endc'',
912 lexescape(wint_t endc, int regx, int cmd_line_operand)
932 while ((c = lexgetc()) != endc) {
1040 if (c != endc || cmd_line_operand) {
1042 if (c == endc)