NAME
swab
—
swap adjacent bytes
SYNOPSIS
#include
<unistd.h>
void
swab
(const
void *src, void
*dst, size_t
len);
DESCRIPTION
The function
swab
()
copies len bytes from the location referenced by
src to the location referenced by
dst, swapping adjacent bytes.
The argument len must be an even number.
SEE ALSO
HISTORY
The swab
() function first appeared in
Version 7 AT&T UNIX.