Format: AllC/C++CSSTextshell script Advanced Search
381: /* __BIT(n): nth bit, where __BIT(0) == 0x1. */ 382: #define __BIT(__n) \ 383: (((__n) >= NBBY * sizeof(uintmax_t)) ? 0 : ((uintmax_t)1 << (__n)))