BZERO(3) Library Functions Manual BZERO(3)
NAME
bzero — memory
operations
SYNOPSIS
#include <strings.h> void bzero(void *s, size_t n);
DESCRIPTION
The bzero() function places n zero-valued bytes in the area pointed to by s .
RETURN VALUE
The bzero() function returns no value.
ERRORS
No errors are defined.
EXAMPLES
None.
APPLICATION USAGE
For portability to implementations conforming to earlier versions of this specification, memset(3) is preferred over this function.
FUTURE DIRECTIONS
None.
SEE ALSO
memset(3) , <strings.h> .
February 1997 posix.fail