xref: /reactos/sdk/lib/crt/string/wtof.c (revision c2c66aff)
1 #include <precomp.h>
2 
3 /*
4  * @implemented
5  */
6 double
_wtof(const wchar_t * str)7 _wtof(const wchar_t *str)
8 {
9   return wcstod(str, 0);
10 }
11