Lines Matching defs:input_key
47 int input_key;
58 input_key = tolower(getc(cin));
60 if (strchr(" \nrq", input_key)) {
62 return input_key;
90 int ch, input_key = 0, show_prompt;
135 if (input_key != 'r' && show_prompt) {
137 input_key = prompt(cin, "--More--(%d%% of %lld bytes)",
141 input_key = prompt(cin, "--More--");
142 if (input_key == 'q') goto stop;
155 if (++row >= rows || input_key == '\n') show_prompt = 1;
162 input_key = prompt(cin, "--More--(Next file: %s)", *toys.optargs);
163 if (input_key == 'q') goto stop;