aac04c15d7
* Makefile.in (TEXIFILES): Add fnmatch.txh. (maint-undoc): New. maint-tool: Add "undoc" tool. * alloca.c, argv.c, asprintf.c, choose-temp.c, concat.c, fdmatch.c, ffs.c, getruntime.c, insque.c, lbasename.c, make-temp-file.c, mkstemps.c, pexecute.c, random.c, spaces.c, strerror.s, strsignal.c, strtol.c, vasprintf.c: Add or update documentation. * fnmatch.txh: New. * functions.texi: Regenerate. From-SVN: r46274
28 lines
472 B
C
28 lines
472 B
C
/* ffs -- Find the first bit set in the parameter
|
|
|
|
@deftypefn Supplemental int ffs (int @var{valu})
|
|
|
|
Find the first (least significant) bit set in @var{valu}. Bits are
|
|
numbered from right to left, starting with bit 1 (corresponding to the
|
|
value 1). If @var{valu} is zero, zero is returned.
|
|
|
|
@end deftypefn
|
|
|
|
*/
|
|
|
|
int
|
|
ffs (valu)
|
|
register int valu;
|
|
{
|
|
register int bit;
|
|
|
|
if (valu == 0)
|
|
return 0;
|
|
|
|
for (bit = 1; !(valu & 1); bit++)
|
|
valu >>= 1;
|
|
|
|
return bit;
|
|
}
|
|
|