summaryrefslogtreecommitdiffstats
path: root/man3/wctomb.3
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3/wctomb.311
1 files changed, 5 insertions, 6 deletions
diff --git a/man3/wctomb.3 b/man3/wctomb.3
index 70ddb28..9606dc8 100644
--- a/man3/wctomb.3
+++ b/man3/wctomb.3
@@ -9,7 +9,7 @@
.\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
.\" ISO/IEC 9899:1999
.\"
-.TH wctomb 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH wctomb 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
wctomb \- convert a wide character to a multibyte sequence
.SH LIBRARY
@@ -18,7 +18,7 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <stdlib.h>
-.PP
+.P
.BI "int wctomb(char *" s ", wchar_t " wc );
.fi
.SH DESCRIPTION
@@ -41,13 +41,13 @@ and returns the length of said multibyte representation,
that is, the number of
bytes written at
.IR s .
-.PP
+.P
The programmer must ensure that there is
room for at least
.B MB_CUR_MAX
bytes at
.IR s .
-.PP
+.P
If
.I s
is NULL, the
@@ -73,7 +73,7 @@ If
can not be
represented as a multibyte sequence (according
to the current locale), \-1 is returned.
-.PP
+.P
If
.I s
is NULL, the
@@ -94,7 +94,6 @@ T{
.BR wctomb ()
T} Thread safety MT-Unsafe race
.TE
-.sp 1
.SH VERSIONS
The function
.BR wcrtomb (3)