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