wcstol method
Implementation
int wcstol(
ffi.Pointer<ffi.Uint16> _String,
ffi.Pointer<ffi.Pointer<ffi.Uint16>> _EndPtr,
int _Radix,
) {
return (_wcstol ??=
_dylib.lookupFunction<_c_wcstol, _dart_wcstol>('wcstol'))(
_String,
_EndPtr,
_Radix,
);
}