ffsl function

int ffsl(
  1. int __l
)

Implementation

int ffsl(
  int __l,
) {
  _ffsl ??= Libc()
      .dylib
      .lookupFunction<ffi.Int32 Function(ffi.Int64), _dart_ffsl>('ffsl');
  return _ffsl!(
    __l,
  );
}