atoi method

int atoi(
  1. Pointer<Char> __nptr
)

Implementation

int atoi(
  ffi.Pointer<ffi.Char> __nptr,
) {
  return _atoi(
    __nptr,
  );
}