blob: 16ebe88370eb62897a09486c45cfdbf70739bdd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ISC license. */
#include <skalibs/bitarray.h>
size_t bitarray_firstset (unsigned char const *s, size_t max)
{
size_t n = bitarray_div8(max) ;
size_t i = 0 ;
for (; i < n ; i++) if (s[i]) break ;
if (i == n) return max ;
i <<= 3 ;
while ((i < max) && !bitarray_peek(s, i)) i++ ;
return i ;
}
|