ffs, ffsl, ffsll - find first bit set in a word
Standard C library (libc
, -lc
)
#include <strings.h>
int ffs(int i);
int ffsl(long i);
int ffsll(long long i);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
These functions return the position of the first bit set, or 0 if no
bits are set in i
.
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
Thread safety | MT-Safe |
memchr(3)