摘要: static inline int test_bit(int nr, const volatile void * addr) { return (1UL & (((const int *) addr)[nr >> 5] >> (nr & 31))) != 0UL; } 参数nr 第几位 参数addr 阅读全文
posted @ 2020-12-28 18:01 mude 阅读(1232) 评论(0) 推荐(0) 编辑