]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/fputwc.3
Automated addition of parentheses by add_parens_for_own_funcs.sh
[thirdparty/man-pages.git] / man3 / fputwc.3
index 7c1f046b58ae111a5c03fd555727844372b349bf..a3e20e1621ad60fd8553ad75348385f70f0cfa11 100644 (file)
@@ -24,20 +24,20 @@ fputwc \- write a wide character to a FILE stream
 .BI "wint_t putwc(wchar_t " wc ", FILE *" stream );
 .fi
 .SH DESCRIPTION
-The \fBfputwc\fP function is the wide-character equivalent of the \fBfputc\fP
+The \fBfputwc\fP() function is the wide-character equivalent of the \fBfputc\fP
 function. It writes the wide character \fIwc\fP to \fIstream\fP. If
 \fIferror(stream)\fP becomes true, it returns WEOF. If a wide character
 conversion error occurs, it sets \fBerrno\fP to \fBEILSEQ\fP and returns WEOF.
 Otherwise it returns \fIwc\fP.
 .PP
-The \fBputwc\fP function or macro functions identically to \fBfputwc\fP.
+The \fBputwc\fP() function or macro functions identically to \fBfputwc\fP().
 It may be implemented as a macro, and may evaluate its argument
 more than once. There is no reason ever to use it.
 .PP
 For non-locking counterparts, see
 .BR unlocked_stdio (3).
 .SH "RETURN VALUE"
-The \fBfputwc\fP function returns \fIwc\fP if no error occurred, or WEOF to
+The \fBfputwc\fP() function returns \fIwc\fP if no error occurred, or WEOF to
 indicate an error.
 .SH ERRORS
 Apart from the usual ones, there is
@@ -47,11 +47,11 @@ Conversion of \fIwc\fP to the stream's encoding fails.
 .SH "CONFORMING TO"
 ISO/ANSI C, UNIX98
 .SH NOTES
-The behaviour of \fBfputwc\fP depends on the LC_CTYPE category of the
+The behaviour of \fBfputwc\fP() depends on the LC_CTYPE category of the
 current locale.
 .PP
 In the absence of additional information passed to the fopen call, it is
-reasonable to expect that \fBfputwc\fP will actually write the multibyte
+reasonable to expect that \fBfputwc\fP() will actually write the multibyte
 sequence corresponding to the wide character \fIwc\fP.
 .SH "SEE ALSO"
 .BR fgetwc (3),