Lines Matching defs:question
17 char *question;
22 question = "123";
23 answers = str_to_ints(question, strlen(question), &nr_integers);
28 question = "123abc";
29 answers = str_to_ints(question, strlen(question), &nr_integers);
34 question = "a123";
35 answers = str_to_ints(question, strlen(question), &nr_integers);
39 question = "12 35";
40 answers = str_to_ints(question, strlen(question), &nr_integers);
46 question = "12 35 46";
47 answers = str_to_ints(question, strlen(question), &nr_integers);
53 question = "12 35 abc 46";
54 answers = str_to_ints(question, strlen(question), &nr_integers);
60 question = "";
61 answers = str_to_ints(question, strlen(question), &nr_integers);
65 question = "\n";
66 answers = str_to_ints(question, strlen(question), &nr_integers);