Lines Matching refs:response
16 char response[10]; /* string to hold the user's response */
25 if (fgets(response, sizeof(response), stdin) == NULL)
28 choice = strtol(response, NULL, 10);
40 char response[10]; /* The user's response */
51 if (fgets(response, sizeof(response), stdin) == NULL)
55 if ((response[0] == 'y') || (response[0] == 'Y')) {
108 char response[10]; /* Used to get yes or no answers from user */
133 if (fgets(response, sizeof(response), stdin) == NULL
134 || (response[0] == 'n') || (response[0] == 'N')) {