blob: 41845d4cb1dacccbd4686e1ec5882d03fc192f3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <unistd.h>
#include <sys/types.h>
#include <byteswap.h>
/* Updated implementation based on byteswap.h from Miles Bader
* <miles@gnu.org>. This should be much faster on arches with machine
* specific, optimized definitions in include/bits/byteswap.h (i.e. on
* x86, use the bswap instruction on i486 and better boxes). For
* platforms that lack such support, this should be no slower than it
* was before... */
void swab (const void *source, void *dest, ssize_t count)
{
const unsigned short *from = source, *from_end = from + (count >> 1);
unsigned short *to = dest;
while (from < from_end)
*to++ = bswap_16 (*from++);
}
|