reactos/sdk/lib/crt/string/wtof.c

11 lines
107 B
C

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