1__FFS(9) Basic C Library Functions __FFS(9)
23
4
NAME
6__ffs - find first set bit in word
7
SYNOPSIS
9unsigned long __ffs(unsigned long word);
10
ARGUMENTS
12word
13The word to search
14
DESCRIPTION
16Undefined if no bit exists, so code should check against 0 first.
17
COPYRIGHT
19Kernel Hackers Manual 2.6. June 2019 __FFS(9)