bzero - memory operations
#include <strings.h> void bzero(void *s, size_t n);
The bzero() function places n zero-valued bytes in the area pointed to by s.
The bzero() function returns no value.
No errors are defined.
None.
For portability to implementations conforming to earlier versions of this specification, memset() is preferred over this function.
None.
memset(), <strings.h>.