Sign in
mojo
/
mojo-testing
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
misc
/
ffs.c
blob: 673ce5a9758284c7eca182b32de3902c9b353b3f [
file
]
#include
<strings.h>
#include
"atomic.h"
int
ffs
(
int
i
)
{
return
i
?
a_ctz_l
(
i
)+
1
:
0
;
}