Searched defs:wcstod (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dwcstod.cpp37 float_type wcstod(const wchar_t* str, wchar_t** end, float_type strtod_fn(const char*, char**)) { function
94 return wcstod<float>(s, end, strtof);
97 double wcstod(const wchar_t* s, wchar_t** end) { function
98 return wcstod<double>(s, end, strtod);
102 return wcstod<long double>(s, end, strtold);

Completed in 50 milliseconds