]> git.saurik.com Git - apple/libc.git/blobdiff - locale/FreeBSD/mbstowcs.3.patch
Libc-763.11.tar.gz
[apple/libc.git] / locale / FreeBSD / mbstowcs.3.patch
index a79834f5d6fb39ba8362437d3e1f6eff10c55aea..075f58bda6c37238214473b7a39d227ecea0b1e7 100644 (file)
@@ -1,6 +1,6 @@
---- mbstowcs.3.orig    Fri Mar 11 19:44:47 2005
-+++ mbstowcs.3 Fri Mar 11 20:01:09 2005
-@@ -41,7 +41,8 @@
+--- mbstowcs.3.orig    2009-11-09 15:05:25.000000000 -0800
++++ mbstowcs.3 2009-11-09 15:05:26.000000000 -0800
+@@ -37,7 +37,8 @@
  .Dt MBSTOWCS 3
  .Os
  .Sh NAME
  .Nd convert a character string to a wide-character string
  .Sh LIBRARY
  .Lb libc
-@@ -52,6 +53,12 @@
- .Fa "wchar_t * restrict wcstring" "const char * restrict mbstring"
- .Fa "size_t nwchars"
- .Fc
+@@ -45,21 +46,39 @@
+ .In stdlib.h
+ .Ft size_t
+ .Fo mbstowcs
+-.Fa "wchar_t * restrict wcstring" "const char * restrict mbstring"
+-.Fa "size_t nwchars"
++.Fa "wchar_t *restrict pwcs"
++.Fa "const char *restrict s"
++.Fa "size_t n"
++.Fc
++.In stdlib.h
 +.In xlocale.h
 +.Ft size_t
 +.Fo mbstowcs_l
-+.Fa "wchar_t * restrict wcstring" "const char * restrict mbstring"
-+.Fa "size_t nwchars" "locale_t loc"
-+.Fc
++.Fa "wchar_t *restrict pwcs"
++.Fa "const char *restrict s"
++.Fa "size_t n"
++.Fa "locale_t loc"
+ .Fc
  .Sh DESCRIPTION
  The
  .Fn mbstowcs
-@@ -64,6 +71,14 @@
- .Fa nwchars
+ function converts a multibyte character string
+-.Fa mbstring
+-beginning in the initial conversion state
++.Fa s ,
++beginning in the initial conversion state,
+ into a wide character string
+-.Fa wcstring .
++.Fa pwcs .
+ No more than
+-.Fa nwchars
++.Fa n
  wide characters are stored.
- A terminating null wide character is appended if there is room.
+-A terminating null wide character is appended if there is room.
++A terminating null wide character is appended, if there is room.
 +.Pp
-+While the
++Although the
 +.Fn mbstowcs
 +function uses the current locale, the
 +.Fn mbstowcs_l
@@ -38,7 +57,7 @@
  .Sh RETURN VALUES
  The
  .Fn mbstowcs
-@@ -83,7 +98,8 @@
+@@ -79,7 +98,8 @@ The conversion state is invalid.
  .Sh SEE ALSO
  .Xr mbsrtowcs 3 ,
  .Xr mbtowc 3 ,