test colors

This commit is contained in:
2021-11-10 10:28:45 +01:00
parent 906bc71f67
commit 09b582c23a

3
foo.h
View File

@@ -1,2 +1,5 @@
#define bit_for_each64_2(pos, tmp, ul) for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))
#define bit_for_each64(pos, tmp, ul) \
for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp))