wcstof method
Implementation
double wcstof(
ffi.Pointer<ffi.Uint16> _String,
ffi.Pointer<ffi.Pointer<ffi.Uint16>> _EndPtr,
) {
return (_wcstof ??=
_dylib.lookupFunction<_c_wcstof, _dart_wcstof>('wcstof'))(
_String,
_EndPtr,
);
}