1
0

ffsl.c 93 B

1234567
  1. #include <strings.h>
  2. #include "atomic.h"
  3. int ffsl(long i)
  4. {
  5. return i ? a_ctz_l(i)+1 : 0;
  6. }