Lines Matching refs:input
634 static char *input = NULL; /* current place in the input stream */
754 * yylex - return next token from the the input stream.
831 /* getch - return the next character from the input stream. */
837 if ((c = *input) == '\0')
840 input++;
845 /* ungetch - return a character to the input stream. */
849 *(--input) = c;
852 /* skipwhitespace - skip over whitespace in the input stream. */
1991 input = str;