bzero - write zeros to a byte string
#include <string.h>
void bzero(void *s, size_t n);
The bzero() function sets the first n bytes of the byte string s to
zero.
The bzero() function returns no value.
4.3BSD. This function is deprecated -- use memset in new programs.
memset(3), swab(3)
GNU 1993-04-09 BZERO(3)
[ Back ] |