clear bit N of bit string name */
| 150 | |
| 151 | /* clear bit N of bit string name */ |
| 152 | static inline void |
| 153 | bit_clear(bitstr_t *_bitstr, int _bit) |
| 154 | { |
| 155 | _bitstr[_bit_idx(_bit)] &= ~_bit_mask(_bit); |
| 156 | } |
| 157 | |
| 158 | /* Set bits start ... stop inclusive in bit string. */ |
| 159 | static inline void |
no test coverage detected