1FFS(3)                     Linux Programmer's Manual                    FFS(3)
2
3
4

NAME

6       ffs, ffsl, ffsll - find first bit set in a word
7

SYNOPSIS

9       #include <strings.h>
10
11       int ffs(int i);
12
13       #include <string.h>
14
15       int ffsl(long i);
16
17       int ffsll(long long i);
18
19   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
20
21       ffs():
22           Since glibc 2.12:
23                   _XOPEN_SOURCE >= 700
24                   || ! (_POSIX_C_SOURCE >= 200809L)
25                   || /* Glibc since 2.19: */ _DEFAULT_SOURCE
26                   || /* Glibc versions <= 2.19: */ _BSD_SOURCE ||
27               _SVID_SOURCE
28           Before glibc 2.12:
29               none
30       ffsl(), ffsll():
31           Since glibc 2.27:
32                   _DEFAULT_SOURCE
33           Before glibc 2.27:
34                   _GNU_SOURCE
35

DESCRIPTION

37       The ffs() function returns the position of the  first  (least  signifi‐
38       cant)  bit  set in the word i.  The least significant bit is position 1
39       and the most significant position is, for example, 32 or 64.  The func‐
40       tions  ffsll()  and  ffsl()  do the same but take arguments of possibly
41       different size.
42

RETURN VALUE

44       These functions return the position of the first bit set, or  0  if  no
45       bits are set in i.
46

ATTRIBUTES

48       For  an  explanation  of  the  terms  used  in  this  section,  see at‐
49       tributes(7).
50
51       ┌───────────────────────┬───────────────┬─────────┐
52Interface              Attribute     Value   
53       ├───────────────────────┼───────────────┼─────────┤
54ffs(), ffsl(), ffsll() │ Thread safety │ MT-Safe │
55       └───────────────────────┴───────────────┴─────────┘

CONFORMING TO

57       ffs(): POSIX.1-2001, POSIX.1-2008, 4.3BSD.
58
59       The ffsl() and ffsll() functions are glibc extensions.
60

NOTES

62       BSD systems have a prototype in <string.h>.
63

SEE ALSO

65       memchr(3)
66

COLOPHON

68       This page is part of release 5.10 of the Linux  man-pages  project.   A
69       description  of  the project, information about reporting bugs, and the
70       latest    version    of    this    page,    can     be     found     at
71       https://www.kernel.org/doc/man-pages/.
72
73
74
75GNU                               2020-11-01                            FFS(3)
Impressum