BZERO(3) Library Functions Manual BZERO(3)

bzeromemory 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(3) is preferred over this function.

None.

memset(3) , <strings.h> .

February 1997 posix.fail