Copy a bitmap, putting the bits into little-endian order.
void bitmap_copy_le(void * dst, const unsigned long * src, int nbits);
dst
destination buffer
src
bitmap to copy
nbits
number of bits in the bitmap
Require nbits % BITS_PER_LONG == 0.