You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bitops.c 151B

1234567891011
  1. #include <strings.h>
  2. int __flsl ( long x ) {
  3. unsigned long value = x;
  4. int ls = 0;
  5. for ( ls = 0 ; value ; ls++ ) {
  6. value >>= 1;
  7. }
  8. return ls;
  9. }