1BZERO(3) Linux Programmer's Manual BZERO(3)
23
4
NAME
6bzero - write zero-valued bytes
7
SYNOPSIS
9#include <strings.h>
1011
void bzero(void *s, size_t n);
12
DESCRIPTION
14The bzero() function sets the first n bytes of the byte area starting
15at s to zero (bytes containing '\0').
16
RETURN VALUE
18None.
19
CONFORMING TO
214.3BSD. This function is deprecated (marked as LEGACY in
22POSIX.1-2001): use memset() in new programs.
23
SEE ALSO
25memset(3), swab(3)
2627
28
29
Linux 2002-12-31 BZERO(3)