strtoull method

int strtoull(
  1. Pointer<Int8> __nptr,
  2. Pointer<Pointer<Int8>> __endptr,
  3. int __base
)

Implementation

int strtoull(
  ffi.Pointer<ffi.Int8> __nptr,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> __endptr,
  int __base,
) {
  return _strtoull(
    __nptr,
    __endptr,
    __base,
  );
}