11 lines
266 B
C
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__
|