strtoll method
Implementation
int strtoll(
ffi.Pointer<ffi.Int8> _String,
ffi.Pointer<ffi.Pointer<ffi.Int8>> _EndPtr,
int _Radix,
) {
return (_strtoll ??=
_dylib.lookupFunction<_c_strtoll, _dart_strtoll>('strtoll'))(
_String,
_EndPtr,
_Radix,
);
}