1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
'\" t
.\" Copyright, the authors of the Linux man-pages project
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH ffs 3 2025-05-17 "Linux man-pages (unreleased)"
.SH NAME
ffs, ffsl, ffsll \- find first bit set in a word
.SH LIBRARY
Standard C library
.RI ( libc ,\~ \-lc )
.SH SYNOPSIS
.nf
.B #include <strings.h>
.P
.BI "int ffs(int " i );
.BI "int ffsl(long " i );
.BI "int ffsll(long long " i );
.fi
.P
.RS -4
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.RE
.P
.BR ffs ():
.nf
Since glibc 2.12:
_XOPEN_SOURCE >= 700
|| ! (_POSIX_C_SOURCE >= 200809L)
|| /* glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
Before glibc 2.12:
none
.fi
.P
.BR ffsl (),
.BR ffsll ():
.nf
Since glibc 2.27:
.\" glibc commit 68fe16dd327c895c08b9ee443b234c49c13b36e9
_DEFAULT_SOURCE
Before glibc 2.27:
_GNU_SOURCE
.fi
.SH DESCRIPTION
The
.BR ffs ()
function returns the position of the first
(least significant) bit set in the word
.IR i .
The least significant bit is position 1 and the
most significant position is, for example, 32 or 64.
The functions
.BR ffsll ()
and
.BR ffsl ()
do the same but take
arguments of possibly different size.
.SH RETURN VALUE
These functions return the position of the first bit set,
or 0 if no bits are set in
.IR i .
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
.TS
allbox;
lbx lb lb
l l l.
Interface Attribute Value
T{
.na
.nh
.BR ffs (),
.BR ffsl (),
.BR ffsll ()
T} Thread safety MT-Safe
.TE
.SH STANDARDS
.TP
.BR ffs ()
POSIX.1-2001, POSIX.1-2008, 4.3BSD.
.TP
.BR ffsl ()
.TQ
.BR ffsll ()
GNU.
.SH SEE ALSO
.BR memchr (3)
|