2020-09-30 17:12:29 +02:00

11 lines
266 B
C

// 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__