bzero - zero out memory
Standard C Library (libc, -lc)
#include <string.h>
void
bzero(void *buf, size_t len);
The region of memory pointed to by buf, of length len, is zeroed out.
Zeroing the bytes of a floating point number does not necessarily produce a floating point zero value. Similarly, zeroing the bytes of a pointer does not necessarily produce NULL.