bzero()

NAME

bzero() - write zeroes to a byte string

SYNOPSIS

#include <strings.h>

void bzero (void *b, size_t len)

DESCRIPTION

The bzero(3) function writes len zero bytes to the string b. If len is zero, bzero(3) does nothing.

SEE ALSO

memset(3)

swab(3)