ack/lang/cem/libcc/gen/swab.c

12 lines
155 B
C
Raw Permalink Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1987-01-27 15:57:55 +00:00
swab(from, to, nbytes)
register char *from, *to;
{
nbytes /= 2;
while (nbytes-- > 0) {
*(to+1) = *from++;
*to = *from++;
to += 2;
}
}