test_bit
#define test_bit(i, a) \
test_bit(int pos, unsigned long *p)
#define test_bit(b, p) \
#define test_bit(i, a) \
#define test_bit(ix, pData) ((*pData) & (1<<(ix)))
#define test_bit(ix, pData) ((*pData) & (1<<(ix)))
static int test_bit(int ix, bitmap *p)