bzero() - write zeroes to a byte string
#include <strings.h> void bzero (void *b, size_t len)
The bzero(3) function writes len zero bytes to the string b. If len is zero, bzero(3) does nothing.
memset(3)
swab(3)