ffsll function

int ffsll(
  1. int __ll
)

Implementation

int ffsll(
  int __ll,
) {
  _ffsll ??= Libc()
      .dylib
      .lookupFunction<ffi.Int32 Function(ffi.Int64), _dart_ffsll>('ffsll');
  return _ffsll!(
    __ll,
  );
}