SWAB(3) Library Functions Manual SWAB(3)

swabswap bytes


#include <unistd.h>

void swab(const void *restrict src, void *restrict dest,
       ssize_t nbytes);

The swab () function shall copy nbytes bytes, which are pointed to by , to the object pointed to by , exchanging adjacent bytes. The nbytes argument should be even. If nbytes 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 is undefined. If nbytes is negative, swab () does nothing.

None.

No errors are defined.

None.

None.

None.

None.

XBD <unistd.h>

First released in Issue 1. Derived from Issue 1 of the SVID.

The keyword is added to the swab () prototype for alignment with the ISO/IEC 9899:1999 (“ISO C99”) standard.

January 1, 2008 posix.fail