blob: 50622da6a1f857c670c3ef847b3c8056bfe6f7ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __BITUTILS_H_
#define __BITUTILS_H_
#include <stdint.h>
extern const uint8_t deBruijn64tab[64];
extern const uint8_t lead0tab[16];
int TrailingZeros64(uint64_t x);
#endif //__BITUTILS_H_
|