1BZERO(3) Linux Programmer's Manual BZERO(3)
2
3
4
6 bzero - write zero-valued bytes
7
9 #include <strings.h>
10
11 void bzero(void *s, size_t n);
12
14 The bzero() function sets the first n bytes of the area starting at s
15 to zero (bytes containing '\0').
16
18 None.
19
21 4.3BSD. This function is deprecated (marked as LEGACY in
22 POSIX.1-2001): use memset(3) in new programs. POSIX.1-2008 removes the
23 specification of bzero().
24
26 memset(3), swab(3)
27
29 This page is part of release 3.53 of the Linux man-pages project. A
30 description of the project, and information about reporting bugs, can
31 be found at http://www.kernel.org/doc/man-pages/.
32
33
34
35Linux 2008-08-06 BZERO(3)