Searched refs:strtox (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/stdlib/
H A Dstrtod.c7 static long double strtox(const char* s, char** p, int prec) { function
18 return strtox(s, p, 0);
22 return strtox(s, p, 1);
26 return strtox(s, p, 2);
H A Dstrtol.c9 static unsigned long long strtox(const char* s, char** p, int base, unsigned long long lim) { function
29 return strtox(s, p, base, ULLONG_MAX);
33 return strtox(s, p, base, LLONG_MIN);
37 return strtox(s, p, base, ULONG_MAX);
41 return strtox(s, p, base, 0UL + LONG_MIN);

Completed in 27 milliseconds