wcstoumax method

int wcstoumax(
  1. Pointer<WChar> __nptr,
  2. Pointer<Pointer<WChar>> __endptr,
  3. int __base
)

Implementation

int wcstoumax(
  ffi.Pointer<ffi.WChar> __nptr,
  ffi.Pointer<ffi.Pointer<ffi.WChar>> __endptr,
  int __base,
) {
  return _wcstoumax(
    __nptr,
    __endptr,
    __base,
  );
}