Cross-reference between byte and wide-character stdio functions. Remove

references to fputwc() and fgetwc() being macros while I'm at it.
This commit is contained in:
tjr 2002-10-10 04:12:40 +00:00
parent db6fbae4bf
commit 867a23440c
7 changed files with 13 additions and 13 deletions

View File

@ -150,7 +150,8 @@ the FSA.)
.Sh SEE ALSO
.Xr feof 3 ,
.Xr ferror 3 ,
.Xr fgetln 3
.Xr fgetln 3 ,
.Xr fgetws 3
.Rs
.%T "The FreeBSD Security Architecture"
.Re

View File

@ -99,6 +99,7 @@ for any of the errors specified for the routines
.Xr write 2 .
.Sh SEE ALSO
.Xr ferror 3 ,
.Xr fputws 3 ,
.Xr putc 3 ,
.Xr stdio 3
.Sh STANDARDS

View File

@ -115,6 +115,7 @@ until the condition is cleared with
.Xr ferror 3 ,
.Xr fopen 3 ,
.Xr fread 3 ,
.Xr getwc 3 ,
.Xr putc 3 ,
.Xr ungetc 3
.Sh STANDARDS

View File

@ -38,7 +38,7 @@
.\" @(#)getc.3 8.1 (Berkeley) 6/4/93
.\" $FreeBSD$
.\"
.Dd October 24, 2001
.Dd October 10, 2002
.Dt GETWC 3
.Os
.Sh NAME
@ -70,8 +70,7 @@ The
.Fn getwc
function
acts essentially identically to
.Fn fgetwc ,
but is a macro that expands in-line.
.Fn fgetwc .
.Pp
The
.Fn getwchar
@ -103,6 +102,7 @@ until the condition is cleared with
.Xr ferror 3 ,
.Xr fopen 3 ,
.Xr fread 3 ,
.Xr getc 3 ,
.Xr putwc 3 ,
.Xr stdio 3 ,
.Xr ungetwc 3

View File

@ -115,6 +115,7 @@ or if an attempt is made to write a read-only stream.
.Xr ferror 3 ,
.Xr fopen 3 ,
.Xr getc 3 ,
.Xr putwc 3 ,
.Xr stdio 3
.Sh STANDARDS
The functions

View File

@ -38,7 +38,7 @@
.\" @(#)putc.3 8.1 (Berkeley) 6/4/93
.\" $FreeBSD$
.\"
.Dd October 20, 2001
.Dd October 10, 2002
.Dt PUTWC 3
.Os
.Sh NAME
@ -68,12 +68,7 @@ to the output stream pointed to by
.Pp
.Fn putwc
acts essentially identically to
.Fn fputwc ,
but is a macro that expands in-line. It may evaluate
.Fa stream
more than once, so arguments given to
.Fn putwc
should not be expressions with potential side effects.
.Fn fputwc .
.Pp
.Fn putwchar
is identical to
@ -100,6 +95,6 @@ The functions
.Fn fputwc ,
.Fn putwc ,
and
.Fn putwchar ,
.Fn putwchar
conform to
.St -isoC-99 .

View File

@ -93,7 +93,8 @@ the operation will fail and the stream will remain unchanged.
.Sh SEE ALSO
.Xr fseek 3 ,
.Xr getc 3 ,
.Xr setvbuf 3
.Xr setvbuf 3 ,
.Xr ungetwc 3
.Sh STANDARDS
The
.Fn ungetc