swab(3) Library Functions Manual swab(3)

swab - swap adjacent bytes

Biblioteca C Padrão (libc, -lc)

#define _XOPEN_SOURCE       /* Veja feature_test_macros(7) */
#include <unistd.h>
void swab(const void from[restrict .n], void to[restrict .n],
          ssize_t n);

The swab() function copies n bytes from the array pointed to by from to the array pointed to by to, exchanging adjacent even and odd bytes. This function is used to exchange data between machines that have different low/high byte ordering.

This function does nothing when n is negative. When n is positive and odd, it handles n-1 bytes as above, and does something unspecified with the last byte. (In other words, n should be even.)

The swab() function returns no value.

Para uma explicação dos termos usados nesta seção, consulte attributes(7).

Interface Atributo Valor
swab() Thread safety MT-Safe

POSIX.1-2008.

POSIX.1-2001, SVr4, 4.3BSD.

bstring(3)

A tradução para português brasileiro desta página man foi criada por Valter Ferraz Sanches <vfs@ezlinux.cjb.net> e André Luiz Fassone <lonely_wolf@ig.com.br>

Esta tradução é uma documentação livre; leia a Licença Pública Geral GNU Versão 3 ou posterior para as condições de direitos autorais. Nenhuma responsabilidade é aceita.

Se você encontrar algum erro na tradução desta página de manual, envie um e-mail para a lista de discussão de tradutores.

31 outubro 2023 Linux man-pages 6.06