11 lines
266 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
// BitUtils.h -- Prototypes for the Bit Scanning functions
#ifndef __BITUTILS_H__
#define __BITUTILS_H__
UINT SumOfBitsInRange(PUINT pdw, UINT ibitStart, UINT ibitLimit);
UINT Leading0sInRange(PUINT pdw, UINT ibitStart, UINT ibitLimit);
#endif // __BITUTILS_H__