wcstod method
Implementation
double wcstod(
ffi.Pointer<ffi.Uint16> _String,
ffi.Pointer<ffi.Pointer<ffi.Uint16>> _EndPtr,
) {
return (_wcstod ??=
_dylib.lookupFunction<_c_wcstod, _dart_wcstod>('wcstod'))(
_String,
_EndPtr,
);
}