1 2 3 4 5 6 7
#ifndef __BITUTILS_H_ #define __BITUTILS_H_ #include <stdint.h> int TrailingZeros64(uint64_t x); #endif //__BITUTILS_H_