Searched refs:wcstox (Results 1 – 2 of 2) sorted by relevance
/third_party/musl/src/stdlib/ |
D | wcstol.c | 32 static unsigned long long wcstox(const wchar_t *s, wchar_t **p, int base, unsigned long long lim) in wcstox() function 55 return wcstox(s, p, base, ULLONG_MAX); in wcstoull() 60 return wcstox(s, p, base, LLONG_MIN); in wcstoll() 65 return wcstox(s, p, base, ULONG_MAX); in wcstoul() 70 return wcstox(s, p, base, 0UL+LONG_MIN); in wcstol()
|
D | wcstod.c | 30 static long double wcstox(const wchar_t *s, wchar_t **p, int prec) in wcstox() function 53 return wcstox(s, p, 0); in wcstof() 58 return wcstox(s, p, 1); in wcstod() 63 return wcstox(s, p, 2); in wcstold()
|