wcstoul method

int wcstoul(
  1. Pointer<Uint16> _String,
  2. Pointer<Pointer<Uint16>> _EndPtr,
  3. int _Radix
)

Implementation

int wcstoul(
  ffi.Pointer<ffi.Uint16> _String,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> _EndPtr,
  int _Radix,
) {
  return (_wcstoul ??=
      _dylib.lookupFunction<_c_wcstoul, _dart_wcstoul>('wcstoul'))(
    _String,
    _EndPtr,
    _Radix,
  );
}