10 lines
189 B
C
10 lines
189 B
C
#ifndef BLUELIB_CORE_BITOP_H_
|
|
#define BLUELIB_CORE_BITOP_H_
|
|
|
|
#include <blue/core/misc.h>
|
|
|
|
BLUE_API int b_popcountl(long v);
|
|
BLUE_API int b_ctzl(long v);
|
|
BLUE_API int b_clzl(long v);
|
|
|
|
#endif |