bzero - write zeros to a byte string
#include <string.h>
void bzero(void *s, int n);
The bzero() function sets the first n bytes of the byte
string s to zero.
The bzero() function returns no value.
BSD 4.3
memset(3), swab(3)