Searched refs:StrToU (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/bionic/ |
D | strtol.cpp | 108 template <typename T, T Max> T StrToU(const char* nptr, char** endptr, int base) { in StrToU() function 195 return StrToU<unsigned long, ULONG_MAX>(s, end, base); in strtoul() 199 return StrToU<unsigned long long, ULLONG_MAX>(s, end, base); in strtoull() 203 return StrToU<uintmax_t, UINTMAX_MAX>(s, end, base); in strtoumax()
|