Set bit N of bit string. */
| 143 | |
| 144 | /* Set bit N of bit string. */ |
| 145 | static inline void |
| 146 | bit_set(bitstr_t *_bitstr, int _bit) |
| 147 | { |
| 148 | _bitstr[_bit_idx(_bit)] |= _bit_mask(_bit); |
| 149 | } |
| 150 | |
| 151 | /* clear bit N of bit string name */ |
| 152 | static inline void |
no test coverage detected