Files
eddys_snippets/_snippets/powerof2.c
2026-05-28 14:23:39 +03:00

4 lines
77 B
C

int IsPowerOfTwo(uint64_t x){
return (x != 0) && ((x & (x - 1)) == 0);
}