strtol method
Implementation
int strtol(
ffi.Pointer<ffi.Int8> _String,
ffi.Pointer<ffi.Pointer<ffi.Int8>> _EndPtr,
int _Radix,
) {
return (_strtol ??=
_dylib.lookupFunction<_c_strtol, _dart_strtol>('strtol'))(
_String,
_EndPtr,
_Radix,
);
}