ack/lang/cem/libcc/gen/swab.c
1987-03-31 10:45:53 +00:00

12 lines
159 B
C

/* $Header$ */
swab(from, to, nbytes)
register char *from, *to;
{
nbytes /= 2;
while (nbytes-- > 0) {
*(to+1) = *from++;
*to = *from++;
to += 2;
}
}