Query: swab
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SWAB(3) BSD Library Functions Manual SWAB(3)NAMEswab -- swap adjacent bytesLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <unistd.h> void swab(const void * restrict src, void * restrict dst, ssize_t len);DESCRIPTIONThe function swab() copies len bytes from the location referenced by src to the location referenced by dst, swapping adjacent bytes. If len is negative or zero, swab() does nothing. If len is odd, swab() copies len - 1 bytes and the disposition of the last byte is unspeci- fied.SEE ALSObzero(3), memset(3)STANDARDSThe swab() function conforms to IEEE Std 1003.1-2001 (``POSIX.1'').HISTORYA swab() function appeared in Version 7 AT&T UNIX. It was originally documented to be ``useful for carrying binary data between PDP11's and other machines''. In NetBSD 6.0 the type of len was changed from size_t to ssize_t for POSIX compliance.BSDApril 30, 2010 BSD
Related Man Pages |
---|
strcpy(3) - netbsd |
strncpy(3) - netbsd |
swab(3) - osf1 |
swab(3c) - opensolaris |
stpcpy(3) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Endian Conversion |
Reading tapes from other platform |
FTP script variable issue |
Help with output 32bit signed integer |