1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1990, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" Chris Torek.
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2013-05-28 20:57:40 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 05:00:24 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)ffs.3 8.2 (Berkeley) 4/19/94
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2015-10-17 19:55:58 +00:00
|
|
|
.Dd October 17, 2015
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt FFS 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2004-01-13 16:05:47 +00:00
|
|
|
.Nm ffs ,
|
|
|
|
.Nm ffsl ,
|
2008-11-03 10:22:19 +00:00
|
|
|
.Nm ffsll ,
|
2004-01-13 16:05:47 +00:00
|
|
|
.Nm fls ,
|
2008-11-03 10:22:19 +00:00
|
|
|
.Nm flsl ,
|
|
|
|
.Nm flsll
|
2004-01-13 16:05:47 +00:00
|
|
|
.Nd find first or last bit set in a bit string
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2002-08-30 19:08:53 +00:00
|
|
|
.In strings.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn ffs "int value"
|
2004-01-13 16:05:47 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn ffsl "long value"
|
|
|
|
.Ft int
|
2008-11-03 10:22:19 +00:00
|
|
|
.Fn ffsll "long long value"
|
2011-05-03 19:33:06 +00:00
|
|
|
.Ft int
|
2004-01-13 16:05:47 +00:00
|
|
|
.Fn fls "int value"
|
|
|
|
.Ft int
|
|
|
|
.Fn flsl "long value"
|
2008-11-03 10:22:19 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn flsll "long long value"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
2008-11-03 10:22:19 +00:00
|
|
|
.Fn ffs ,
|
2004-01-13 16:05:47 +00:00
|
|
|
.Fn ffsl
|
2008-11-03 10:22:19 +00:00
|
|
|
and
|
|
|
|
.Fn ffsll
|
2012-09-30 03:25:04 +00:00
|
|
|
functions find the first (least significant) bit set
|
2006-10-12 15:08:41 +00:00
|
|
|
in
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa value
|
2004-01-13 16:05:47 +00:00
|
|
|
and return the index of that bit.
|
|
|
|
.Pp
|
|
|
|
The
|
2008-11-03 10:22:19 +00:00
|
|
|
.Fn fls ,
|
2004-01-13 16:05:47 +00:00
|
|
|
.Fn flsl
|
2008-11-03 10:22:19 +00:00
|
|
|
and
|
|
|
|
.Fn flsll
|
2012-09-30 03:25:04 +00:00
|
|
|
functions find the last (most significant) bit set in
|
2004-01-13 16:05:47 +00:00
|
|
|
.Fa value
|
|
|
|
and return the index of that bit.
|
|
|
|
.Pp
|
2012-09-30 03:25:04 +00:00
|
|
|
Bits are numbered starting at 1, the least significant bit.
|
2004-01-13 16:05:47 +00:00
|
|
|
A return value of zero from any of these functions means that the
|
|
|
|
argument was zero.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
2015-10-17 19:55:58 +00:00
|
|
|
.Xr bitstring 3 ,
|
|
|
|
.Xr bitset 9
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Fn ffs
|
|
|
|
function appeared in
|
|
|
|
.Bx 4.3 .
|
2002-08-30 19:08:53 +00:00
|
|
|
Its prototype existed previously in
|
2003-09-08 19:57:22 +00:00
|
|
|
.In string.h
|
2002-08-30 19:08:53 +00:00
|
|
|
before it was moved to
|
2003-09-08 19:57:22 +00:00
|
|
|
.In strings.h
|
2002-08-30 19:08:53 +00:00
|
|
|
for
|
|
|
|
.St -p1003.1-2001
|
|
|
|
compliance.
|
2004-01-13 16:05:47 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ffsl ,
|
|
|
|
.Fn fls
|
|
|
|
and
|
|
|
|
.Fn flsl
|
|
|
|
functions appeared in
|
|
|
|
.Fx 5.3 .
|
2008-11-03 10:22:19 +00:00
|
|
|
The
|
|
|
|
.Fn ffsll
|
|
|
|
and
|
|
|
|
.Fn flsll
|
|
|
|
functions appeared in
|
2009-01-13 13:19:42 +00:00
|
|
|
.Fx 7.1 .
|