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/fwide.3 | |
parent | ce9cb96e16485875d545897d73ec8378d6a7cf67 (diff) |
Automated addition of parentheses by add_parens_for_own_funcs.sh
Diffstat (limited to 'man3/fwide.3')
-rw-r--r-- | man3/fwide.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man3/fwide.3 b/man3/fwide.3 index 350bca07..904bf4b1 100644 --- a/man3/fwide.3 +++ b/man3/fwide.3 @@ -21,7 +21,7 @@ fwide \- set and determine the orientation of a FILE stream .BI "int fwide(FILE *" stream ", int " mode ); .fi .SH DESCRIPTION -When \fImode\fP is zero, the \fBfwide\fP function determines the current +When \fImode\fP is zero, the \fBfwide\fP() function determines the current orientation of \fIstream\fP. It returns a value > 0 if \fIstream\fP is wide-character oriented, i.e. if wide character I/O is permitted but char I/O is disallowed. It returns a value < 0 if \fIstream\fP is byte oriented, @@ -34,12 +34,12 @@ operation). Once a stream has an orientation, it cannot be changed and persists until the stream is closed. .PP -When \fImode\fP is non-zero, the \fBfwide\fP function first attempts to set +When \fImode\fP is non-zero, the \fBfwide\fP() function first attempts to set \fIstream\fP's orientation (to wide-character oriented if \fImode\fP > 0, or to byte oriented if \fImode\fP < 0). It then returns a value denoting the current orientation, as above. .SH "RETURN VALUE" -The \fBfwide\fP function returns the stream's orientation, after possibly +The \fBfwide\fP() function returns the stream's orientation, after possibly changing it. A return value > 0 means wide-character oriented. A return value < 0 means byte oriented. A return value zero means undecided. .SH "CONFORMING TO" |