ReactOS 0.4.15-dev-7918-g2a2556c
wtof.c
Go to the documentation of this file.
1#include <precomp.h>
2
3/*
4 * @implemented
5 */
6double
7_wtof(const wchar_t *str)
8{
9 return wcstod(str, 0);
10}
_Check_return_ double __cdecl wcstod(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr)
const WCHAR * str
double _wtof(const wchar_t *str)
Definition: wtof.c:7