Files
test-repo/foo.h
2021-11-10 10:27:57 +01:00

3 lines
119 B
C

#define bit_for_each64(pos, tmp, ul) \
for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))