]> git.saurik.com Git - apple/libc.git/blob - string/FreeBSD/memset.3.patch
Libc-763.12.tar.gz
[apple/libc.git] / string / FreeBSD / memset.3.patch
1 --- memset.3.bsdnew 2009-11-30 13:52:22.000000000 -0800
2 +++ memset.3 2009-11-30 14:19:30.000000000 -0800
3 @@ -37,7 +37,7 @@
4 .Os
5 .Sh NAME
6 .Nm memset
7 -.Nd write a byte to byte string
8 +.Nd fill a byte string with a byte value
9 .Sh LIBRARY
10 .Lb libc
11 .Sh SYNOPSIS
12 @@ -52,7 +52,7 @@ writes
13 .Fa len
14 bytes of value
15 .Fa c
16 -(converted to an unsigned char) to the string
17 +(converted to an unsigned char) to the byte string
18 .Fa b .
19 .Sh RETURN VALUES
20 The
21 @@ -60,6 +60,7 @@ The
22 function returns its first argument.
23 .Sh SEE ALSO
24 .Xr bzero 3 ,
25 +.Xr memset_pattern 3 ,
26 .Xr swab 3 ,
27 .Xr wmemset 3
28 .Sh STANDARDS