Skip to content

Instantly share code, notes, and snippets.

@davidglezz
Created November 5, 2013 11:59
Show Gist options
  • Save davidglezz/7318031 to your computer and use it in GitHub Desktop.
Save davidglezz/7318031 to your computer and use it in GitHub Desktop.
ispow2 function
bool ispow2(int x)
{
return !((~(~0U>>1)|x)&x -1) ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment