diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2005-10-19 06:54:38 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2005-10-19 06:54:38 +0000 |
commit | e511ffb6bcaa9a584412a95e602435827e302033 (patch) | |
tree | 79a5a572acdc2e97d1ea0640b3a63f567e1a00a8 /man3/getwchar.3 | |
parent | ce9cb96e16485875d545897d73ec8378d6a7cf67 (diff) |
Automated addition of parentheses by add_parens_for_own_funcs.sh
Diffstat (limited to 'man3/getwchar.3')
-rw-r--r-- | man3/getwchar.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man3/getwchar.3 b/man3/getwchar.3 index 24bab9dfd..a2418bf29 100644 --- a/man3/getwchar.3 +++ b/man3/getwchar.3 @@ -22,7 +22,7 @@ getwchar \- read a wide character from standard input .BI "wint_t getwchar(void);" .fi .SH DESCRIPTION -The \fBgetwchar\fP function is the wide-character equivalent of the +The \fBgetwchar\fP() function is the wide-character equivalent of the \fBgetchar\fP function. It reads a wide character from \fBstdin\fP and returns it. If the end of stream is reached, or if \fIferror(stdin)\fP becomes true, it returns WEOF. If a wide character conversion error occurs, it sets @@ -31,15 +31,15 @@ true, it returns WEOF. If a wide character conversion error occurs, it sets For a non-locking counterpart, see .BR unlocked_stdio (3). .SH "RETURN VALUE" -The \fBgetwchar\fP function returns the next wide-character from +The \fBgetwchar\fP() function returns the next wide-character from standard input, or WEOF. .SH "CONFORMING TO" ISO/ANSI C, UNIX98 .SH NOTES -The behaviour of \fBgetwchar\fP depends on the LC_CTYPE category of the +The behaviour of \fBgetwchar\fP() depends on the LC_CTYPE category of the current locale. .PP -It is reasonable to expect that \fBgetwchar\fP will actually read a multibyte +It is reasonable to expect that \fBgetwchar\fP() will actually read a multibyte sequence from standard input and then convert it to a wide character. .SH "SEE ALSO" .BR fgetwc (3), |