Lines Matching refs:nextc
91 * the matched unsigned number. If it is 2, then 'nextc' is the first
99 static int scan_was_ok(int sret, char nextc, const char *ok_next_chars)
102 (sret == 2 && strchr(ok_next_chars, nextc) != NULL);
204 char nextc; /* char after sscanf %u match */
207 sret = sscanf(p, "%u%c", &a, &nextc);
208 if (!scan_was_ok(sret, nextc, ",-"))
215 sret = sscanf(c1, "%u%c", &b, &nextc);
216 if (!scan_was_ok(sret, nextc, ",:"))
220 sret = sscanf(c1, "%u%c", &s, &nextc);
221 if (!scan_was_ok(sret, nextc, ","))