swab -- swap adjacent bytes
      Standard C Library (libc, -lc)
      #include <string.h>
     void
     swab(const void * restrict src, void * restrict dst, size_t len);
     The function swab() copies len bytes from the location referenced by src
     to the location referenced by dst, swapping adjacent bytes.
     The argument len must be an even number.
     bzero(3), memset(3)
     A swab() function appeared in Version 7 AT&T UNIX.
FreeBSD 5.2.1			 June 4, 1993			 FreeBSD 5.2.1  [ Back ] |