]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/wcstombs.3
ld.so.8: srcfix
[thirdparty/man-pages.git] / man3 / wcstombs.3
index 073cc9b76ab64d34cf5f0ba4746bb4c186bb6158..8b3ca7d6f41ec7a5711f0a2e6b89fe2841adb9ee 100644 (file)
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"   ISO/IEC 9899:1999
 .\"
-.TH WCSTOMBS 3  2016-10-08 "GNU" "Linux Programmer's Manual"
+.TH WCSTOMBS 3  2019-03-06 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcstombs \- convert a wide-character string to a multibyte string
 .SH SYNOPSIS
 .nf
 .B #include <stdlib.h>
-.sp
+.PP
 .BI "size_t wcstombs(char *" dest ", const wchar_t *" src ", size_t " n );
 .fi
 .SH DESCRIPTION
@@ -53,11 +53,11 @@ In this case, the number of bytes written to
 is returned, but the shift state at this point is lost.
 .IP 3.
 The wide-character string has been completely converted, including the
-terminating null wide character (L\(aq\\0\(aq).
+terminating null wide character (L\(aq\e0\(aq).
 In this case, the conversion ends in the initial shift state.
 The number of bytes written to
 .IR dest ,
-excluding the terminating null byte (\(aq\\0\(aq), is returned.
+excluding the terminating null byte (\(aq\e0\(aq), is returned.
 .PP
 The programmer must ensure that there is room for at least
 .I n
@@ -99,7 +99,7 @@ T{
 .BR wcstombs ()
 T}     Thread safety   MT-Safe
 .TE
-
+.sp 1
 .SH CONFORMING TO
 POSIX.1-2001, POSIX.1-2008, C99.
 .SH NOTES