summaryrefslogtreecommitdiff
path: root/lib/hweight.h
blob: 68861ddd9dc6e5cf808e09e38a6ee1248f1b51c6 (plain)
1
2
3
4
5
6
7
8
9
10
#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