Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
misc
/
ffs.c
blob: 6d2994ff8781ca0efcc6211d507a49e1df9cd563 [
file
] [
log
] [
blame
]
#include
<strings.h>
#include
"atomic.h"
int
ffs
(
int
i
)
{
return
i
?
a_ctz_l
(
i
)
+
1
:
0
;
}