wcstoul method

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

Implementation

int wcstoul(
  ffi.Pointer<ffi.WChar> _String,
  ffi.Pointer<ffi.Pointer<ffi.WChar>> _EndPtr,
  int _Radix,
) {
  return _wcstoul(
    _String,
    _EndPtr,
    _Radix,
  );
}