1BZERO(3)                   Linux Programmer's Manual                  BZERO(3)
2
3
4

NAME

6       bzero - write zero-valued bytes
7

SYNOPSIS

9       #include <strings.h>
10
11       void bzero(void *s, size_t n);
12

DESCRIPTION

14       The  bzero()  function sets the first n bytes of the area starting at s
15       to zero (bytes containing '\0').
16

RETURN VALUE

18       None.
19

CONFORMING TO

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

SEE ALSO

26       memset(3), swab(3)
27

COLOPHON

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)
Impressum