1. NAME

bitmap_copy_le - copy a bitmap, putting the bits into little-endian order.

2. SYNOPSIS

void bitmap_copy_le(void *  dst , const unsigned long *  src , int  nbits );

3. ARGUMENTS

dst
    destination buffer

src
    bitmap to copy

nbits
    number of bits in the bitmap

4. DESCRIPTION

Require nbits % BITS_PER_LONG == 0.

5. COPYRIGHT