10 lines
182 B
C
10 lines
182 B
C
#ifndef FIO_HWEIGHT_H
|
|
#define FIO_HWEIGHT_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
unsigned int hweight8(uint8_t w);
|
|
unsigned int hweight32(uint32_t w);
|
|
unsigned int hweight64(uint64_t w);
|
|
|
|
#endif
|