wcstof method

double wcstof(
  1. Pointer<Uint16> _String,
  2. Pointer<Pointer<Uint16>> _EndPtr
)

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,
  );
}