Home | History | Annotate | Download | only in runtime

Lines Matching defs:s2

59     char* s2;
60 size_t val = strtoul(s, &s2, 10);
61 if (s2 != s) {
62 // s2 should be pointing just after the number.
67 if (*s2 != '\0') {
71 char c = *s2++;
72 if (*s2 == '\0') {