Is bit N of bit string set? */
| 136 | |
| 137 | /* Is bit N of bit string set? */ |
| 138 | static inline int |
| 139 | bit_test(const bitstr_t *_bitstr, int _bit) |
| 140 | { |
| 141 | return ((_bitstr[_bit_idx(_bit)] & _bit_mask(_bit)) != 0); |
| 142 | } |
| 143 | |
| 144 | /* Set bit N of bit string. */ |
| 145 | static inline void |
no test coverage detected