Lines Matching defs:choice
15 int choice = 0; /* index of the user's choice */
22 while ((choice < 1) || (choice > i)) {
23 printf("Enter number of choice: ");
28 choice = strtol(response, NULL, 10);
31 return (choice - 1);
41 int choice; /* The index in the list of the sid chosen by
56 choice = context_menu(list);
57 *usercon = strdup(list[choice]);