NetBSD/dist/ipf/lib/count6bits.c

30 lines
489 B
C
Raw Normal View History

2007-04-15 00:17:19 +04:00
/* $NetBSD: count6bits.c,v 1.1.1.2 2007/04/14 20:17:31 martin Exp $ */
2004-03-28 12:55:20 +04:00
/*
2007-04-15 00:17:19 +04:00
* Copyright (C) 2000-2001 by Darren Reed.
2004-03-28 12:55:20 +04:00
*
* See the IPFILTER.LICENCE file for details on licencing.
*
2007-04-15 00:17:19 +04:00
* Id: count6bits.c,v 1.4.4.1 2006/06/16 17:20:57 darrenr Exp
2004-03-28 12:55:20 +04:00
*/
#include "ipf.h"
int count6bits(msk)
u_32_t *msk;
{
int i = 0, k;
u_32_t j;
for (k = 3; k >= 0; k--)
if (msk[k] == 0xffffffff)
i += 32;
else {
for (j = msk[k]; j; j <<= 1)
if (j & 0x80000000)
i++;
}
return i;
}