ffs function

int ffs(
  1. int __i
)

Implementation

int ffs(
  int __i,
) {
  _ffs ??= Libc()
      .dylib
      .lookupFunction<ffi.Int32 Function(ffi.Int32), _dart_ffs>('ffs');
  return _ffs!(
    __i,
  );
}