поменять местами байты (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.
Имя (Name)
swab — swap bytes
Синопсис (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.
Ошибки (Error)
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(0p)