您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

bitops.c 184B

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