]> 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 8a10597e7b90b1d5d70534c91b0d9b315b9c5ce7..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.
 .\" 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.
 .\" 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
 .\" SUCH DAMAGE.
 .\"
 .\"    @(#)bzero.3     8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.9 2003/09/08 19:57:15 ru 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
 .\"
 .Dd June 4, 1993
 .Dt BZERO 3
 .Sh SYNOPSIS
 .In strings.h
 .Ft void
 .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
 .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
 If
-.Fa len
+.Fa n
 is zero,
 .Fn bzero
 does nothing.
 is zero,
 .Fn bzero
 does nothing.
@@ -76,3 +72,9 @@ before it was moved to
 for
 .St -p1003.1-2001
 compliance.
 for
 .St -p1003.1-2001
 compliance.
+.Pp
+.Fn bzero
+was deprecated in
+.St -p1003.1-2001
+and removed in
+.St -p1003.1-2008 .