mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 02:35:12 +03:00
4 lines
77 B
C
4 lines
77 B
C
int IsPowerOfTwo(uint64_t x){
|
|
return (x != 0) && ((x & (x - 1)) == 0);
|
|
}
|