Appearance
test_bit() - 测试字符串位域的值
int test_bit( string str, int n );
判断字符串`str`的第 `n` 位(bit)是否设置为 1。
set_bit(3), clear_bit(3)
雪风(i@mud.ren)