Lines Matching defs:input
334 char input[8]; /* 8 chars is enough for numbers */
354 (void) printf(gettext("Invalid input. "
355 "Please input a number "
357 (void) memset(input, 0, 8);
359 (void) fgets(input, 8, stdin);
360 if (strlen(input) > 4) {
364 if (input[0] == '\n') {
370 for (i = 0; i < (strlen(input) - 1); i++) {
371 if ((input[i] < '0') ||
372 (input[i] > '9')) {
379 input_num = atoi(input);
575 * a. the input is a invalid integer(unit in ms)
576 * b. the input is a integer less than the minimal delay setting.
607 * The input validation check has been covered by main function