#define SWAP4(a) ( ((a) << 24) | \
                (((a) <<  8) & 0x00ff0000) | \
                (((a) >>  8) & 0x0000ff00) | \
                (((a) >> 24) & 0x000000ff) )

int iswap4_ (int *s)
{
	return (int) SWAP4(*s);
}
