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 56 return wcstox(s, p, base, ULLONG_MAX); in wcstoull() 61 return wcstox(s, p, base, LLONG_MIN); in wcstoll() 66 return wcstox(s, p, base, ULONG_MAX); in wcstoul() 71 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 54 return wcstox(s, p, 0); in wcstof() 59 return wcstox(s, p, 1); in wcstod() 64 return wcstox(s, p, 2); in wcstold()
|