Lines Matching refs:endptr
35 strtoi(const char * __restrict nptr, char ** __restrict endptr, int base, in strtoi() argument
43 if (endptr == NULL) in strtoi()
44 endptr = &ep; in strtoi()
50 r = strtoimax(nptr, endptr, base); in strtoi()
55 if (nptr == *endptr) in strtoi()
57 else if (**endptr != '\0') in strtoi()
75 strtou(const char * __restrict nptr, char ** __restrict endptr, int base, in strtou() argument
83 if (endptr == NULL) in strtou()
84 endptr = &ep; in strtou()
90 r = strtoumax(nptr, endptr, base); in strtou()
95 if (nptr == *endptr) in strtou()
97 else if (**endptr != '\0') in strtou()