Linux

CentOS 4.8

ffs(3)


FFS

NOM

ffs − Chercher le premier bit à 1 dans un mot.

SYNOPSIS

#include <strings.h>

int ffs (int i);

DESCRIPTION

La fonction ffs() (Find First bit Set) renvoie la position du premier bit à 1 dans le mot i. Le bit de moindre poids est en position 1, et le plus signifiant par exemple en position 32 ou 64.

VALEUR RENVOYÃE

La fonction ffs() renvoie la position du premier bit à 1, ou 0 si aucun bit n’est positionné à 1.

CONFORMITÃ

BSD 4.3, POSIX 1003.1-2001.

NOTES

Les systèmes BSD proposent le prototype de cette fonction dans <string.h>.

TRADUCTION

Christophe Blaess, 1997.


ffs(3)