Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 59 of file tif_swab.c.
Referenced by _TIFFSwab16BitData(), _TIFFWriteCustomDirectory(), _TIFFWriteDirectory(), swabHorAcc16(), TIFFFetchData(), TIFFReadCustomDirectory(), TIFFReadDirectory(), and TIFFWriteData().
{ register unsigned char* cp; register unsigned char t; /* XXX unroll loop some */ while (n-- > 0) { cp = (unsigned char*) wp; t = cp[1]; cp[1] = cp[0]; cp[0] = t; wp++; } }