ffsl, ffsll: Avoid unportable behaviour.
[gnulib.git] / lib / ffsl.h
1 /* ffsl.h -- find the first set bit in a word.
2    Copyright (C) 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Eric Blake.  */
18
19 /* This file is meant to be included by ffsl.c and ffsll.c, after
20    they have defined FUNC and TYPE.  */
21
22 #include <string.h>
23
24 #include <limits.h>
25 #include <strings.h>
26
27 #if !defined FUNC || !defined TYPE
28 # error
29 #endif
30
31 int
32 FUNC (TYPE i)
33 {
34   int result = 0;
35   unsigned TYPE j = i;
36
37   /* GCC has __builtin_ffs, but it is limited to int.  */
38   if (!i)
39     return 0;
40   while (1)
41     {
42       if ((unsigned int) j)
43         return result + ffs ((unsigned int) j);
44       j >>= CHAR_BIT * sizeof (unsigned int);
45       result += CHAR_BIT * sizeof (unsigned int);
46     }
47 }