logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface

Application Usage

       None.

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.

Errors

       No errors are defined.

       Thefollowingsectionsareinformative.

Examples

       None.

Future Directions

       None.

Name

       swab — 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.

Rationale

       None.

Return Value

       None.

See Also

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

Synopsis

       #include <unistd.h>

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

See Also