Sponsor:

Your company here, and a link to your site. Click to find out more.

swab - Man Page

swap bytes

Prolog

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.

Synopsis

#include <unistd.h>

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

Description

The swab() function shall copy nbytes bytes, which are pointed to by src, to the object pointed to by dest, 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.

Return Value

None.

Errors

No errors are defined.

The following sections are informative.

Examples

None.

Application Usage

None.

Rationale

None.

Future Directions

None.

See Also

The Base Definitions volume of POSIX.1-2017, <unistd.h>

Referenced By

unistd.h(0p).

2017 IEEE/The Open Group POSIX Programmer's Manual