]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/bzero.3
Libc-1081.1.3.tar.gz
[apple/libc.git] / string / FreeBSD / bzero.3
index 3cc05e04f67b969bb1f3bc11f0b839e9c1923315..04c82de9dd51fa82556a2b051133794deaf85c41 100644 (file)
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\"    must display the following acknowledgement:
-.\"    This product includes software developed by the University of
-.\"    California, Berkeley and its contributors.
 .\" 4. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
@@ -33,7 +29,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"    @(#)bzero.3     8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.8 2002/09/01 21:53:46 robert Exp $
+.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.10 2007/01/09 00:28:11 imp Exp $
 .\"
 .Dd June 4, 1993
 .Dt BZERO 3
 .Sh SYNOPSIS
 .In strings.h
 .Ft void
-.Fn bzero "void *b" "size_t len"
+.Fn bzero "void *s" "size_t n"
 .Sh DESCRIPTION
 The
 .Fn bzero
 function
 writes
-.Fa len
-zero bytes to the string
-.Fa b .
+.Fa n
+zeroed bytes to the string
+.Fa s .
 If
-.Fa len
+.Fa n
 is zero,
 .Fn bzero
 does nothing.
@@ -70,9 +66,15 @@ function
 appeared in
 .Bx 4.3 .
 Its prototype existed previously in
-.Aq Pa string.h
+.In string.h
 before it was moved to
-.Aq Pa strings.h
+.In strings.h
 for
 .St -p1003.1-2001
 compliance.
+.Pp
+.Fn bzero
+was deprecated in
+.St -p1003.1-2001
+and removed in
+.St -p1003.1-2008 .