atoll method

int atoll(
  1. Pointer<Int8> _String
)

Implementation

int atoll(
  ffi.Pointer<ffi.Int8> _String,
) {
  return (_atoll ??= _dylib.lookupFunction<_c_atoll, _dart_atoll>('atoll'))(
    _String,
  );
}