1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-19 00:54:18 +00:00
reactos/sdk/lib/crt/string/wtof.c

10 lines
107 B
C

#include <precomp.h>
/*
* @implemented
*/
double
_wtof(const wchar_t *str)
{
return wcstod(str, 0);
}