Skip to content

Instantly share code, notes, and snippets.

@mutoo
Last active December 17, 2015 13:29
Show Gist options
  • Save mutoo/5617073 to your computer and use it in GitHub Desktop.
Save mutoo/5617073 to your computer and use it in GitHub Desktop.
macro: bit and bit_mask
#define BIT(n) ((uint32_t)1 << (n))
#define BITMASK(n) (BIT(n) - 1)
// code from: spidermonkey.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment