wcstoull method
Implementation
int wcstoull(
ffi.Pointer<ffi.Uint16> _String,
ffi.Pointer<ffi.Pointer<ffi.Uint16>> _EndPtr,
int _Radix,
) {
return (_wcstoull ??=
_dylib.lookupFunction<_c_wcstoull, _dart_wcstoull>('wcstoull'))(
_String,
_EndPtr,
_Radix,
);
}