Standard C Library Functions swab(3C)
NAME
swab - swap bytes
SYNOPSIS
#include
void swab(const char *src, char *dest, ssize_t nbytes);
XPG4, SUS, SUSv2, SUSv3#include
void swab(const void *restrict src, void *restrict dest, ssize_t nbytes);
DESCRIPTION
The swab() function copies nbytes bytes, which are pointed
to by src, to the object pointed to by dest, exchanging adjacent bytes. The nbytes argument should be even. Ifnbytes is odd swab() copies and exchanges nbytes-1 bytes and
the disposition of the last byte is unspecified. If copying takes place between objects that overlap, the behavior isundefined. If nbytes is negative, swab() does nothing.
ERRORS
No errors are defined.ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:____________________________________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|_____________________________|_____________________________|
| Interface Stability | Committed ||_____________________________|_____________________________|
| MT-Level | MT-Safe |
|_____________________________|_____________________________|
| Standard | See standards(5). ||_____________________________|_____________________________|
SEE ALSO
attributes(5), standards(5)SunOS 5.11 Last change: 1 Nov 2003 1