swab() - swap adjacent bytes
#include <string.h>
void swab (const void *src, void *dst, size_t len)
The function swab(3) copies len bytes from the location referenced by src to the location referenced by dst, swapping adjacent bytes.
The argument len must be even number.
bzero(3)
memset(3)