Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
stdio
/
wcstof.c
blob: 3068435e3a15da1f7e35b2077ce745bcc150a98a [
file
] [
log
] [
blame
]
#include
<wchar.h>
float
wcstof
(
const
wchar_t
*
nptr
,
wchar_t
**
endptr
)
{
return
(
wcstod
(
nptr
,
endptr
));
}