Copyright (c) 1990 The Regents of the University of California.
All rights reserved.
This code is derived from software contributed to Berkeley by
Chris Torek.
%sccs.include.redist.man%
@(#)bzero.3 5.1 (Berkeley) 05/15/90
All rights reserved.
This code is derived from software contributed to Berkeley by
Chris Torek.
%sccs.include.redist.man%
@(#)bzero.3 5.1 (Berkeley) 05/15/90
BZERO 3 ""
C 7 NAME
bzero - write zeroes to a byte string
SYNOPSIS
#include <string.h> void bzero(char *b, size_t len);
DESCRIPTION
Bzero writes
len zero bytes to the string
b . If
len is zero,
bzero does nothing.
SEE ALSO
memset(3), swab(3)