]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/wcsnrtombs.3
Automated addition of parentheses by add_parens_for_own_funcs.sh
[thirdparty/man-pages.git] / man3 / wcsnrtombs.3
index efc77a41f76faa03b593bacacf98a0451ef8ce36..e93a09ac506a8d4b73b88a09fee2f8ae46e23f1f 100644 (file)
@@ -21,11 +21,11 @@ wcsnrtombs \- convert a wide character string to a multibyte string
 .BI "                   size_t " len ", mbstate_t *" ps );
 .fi
 .SH DESCRIPTION
-The \fBwcsnrtombs\fP function is like the \fBwcsrtombs\fP function, except that
+The \fBwcsnrtombs\fP() function is like the \fBwcsrtombs\fP function, except that
 the number of wide characters to be converted, starting at \fI*src\fP, is
 limited to \fInwc\fP.
 .PP
-If \fIdest\fP is not a NULL pointer, the \fBwcsnrtombs\fP function converts
+If \fIdest\fP is not a NULL pointer, the \fBwcsnrtombs\fP() function converts
 at most \fInwc\fP wide characters from
 the wide-character string \fI*src\fP to a multibyte string starting at
 \fIdest\fP. At most \fIlen\fP bytes are written to \fIdest\fP. The shift state
@@ -60,7 +60,7 @@ state only known to the wcsnrtombs function is used instead.
 The programmer must ensure that there is room for at least \fIlen\fP bytes
 at \fIdest\fP.
 .SH "RETURN VALUE"
-The \fBwcsnrtombs\fP function returns the number of bytes that make up the
+The \fBwcsnrtombs\fP() function returns the number of bytes that make up the
 converted part of multibyte sequence, not including the terminating null byte.
 If a wide character was encountered which could not be converted, (size_t)(\-1)
 is returned, and \fBerrno\fP set to \fBEILSEQ\fP.
@@ -70,7 +70,7 @@ This function is a GNU extension.
 .BR iconv (3),
 .BR wcsrtombs (3)
 .SH NOTES
-The behaviour of \fBwcsnrtombs\fP depends on the LC_CTYPE category of the
+The behaviour of \fBwcsnrtombs\fP() depends on the LC_CTYPE category of the
 current locale.
 .PP
 Passing NULL as \fIps\fP is not multi-thread safe.