Fills memory with the number of zeros specified by length.
#include <string.h>
void bzero (
void *s,
size_t length);
(IN) Points to the object.
(IN) Specifies the number of zeros to copy.
The bzero interface has been implemented as a macro. The memset function is the preferred interface.