2 * Copyright (C) 1993-2001 by Darren Reed.
4 * See the IPFILTER.LICENCE file for details on licencing.
6 * $Id: count4bits.c,v 1.1 2002/06/15 04:46:39 darrenr Exp $
13 * count consecutive 1's in bit mask. If the mask generated by counting
14 * consecutive 1's is different to that passed, return -1, else return #
24 for (i
= 32; i
; i
--, ipn
*= 2)
30 for (i
= 32, j
= cnt
; i
; i
--, j
--) {