mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
11 lines
107 B
C
11 lines
107 B
C
|
#include <precomp.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
double
|
||
|
_wtof(const wchar_t *str)
|
||
|
{
|
||
|
return wcstod(str, 0);
|
||
|
}
|