OSDN Git Service

(split) LDP: Update original to LDP v3.50.
[linuxjm/LDP_man-pages.git] / original / man3 / fgetwc.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\" %%%LICENSE_END
9 .\"
10 .\" References consulted:
11 .\"   GNU glibc-2 source code and manual
12 .\"   Dinkumware C library reference http://www.dinkumware.com/
13 .\"   OpenGroup's Single UNIX specification
14 .\"      http://www.UNIX-systems.org/online.html
15 .\"   ISO/IEC 9899:1999
16 .\"
17 .\" Modified Tue Oct 16 23:18:40 BST 2001 by John Levon <moz@compsoc.man.ac.uk>
18 .TH FGETWC 3  1999-07-25 "GNU" "Linux Programmer's Manual"
19 .SH NAME
20 fgetwc, getwc \- read a wide character from a FILE stream
21 .SH SYNOPSIS
22 .nf
23 .B #include <stdio.h>
24 .br
25 .B #include <wchar.h>
26 .sp
27 .BI "wint_t fgetwc(FILE *" stream );
28 .BI "wint_t getwc(FILE *" stream );
29 .fi
30 .SH DESCRIPTION
31 The
32 .BR fgetwc ()
33 function is the wide-character equivalent
34 of the
35 .BR fgetc (3)
36 function.
37 It reads a wide character from \fIstream\fP and returns it.
38 If the end of stream is reached, or if \fIferror(stream)\fP becomes true,
39 it returns
40 .BR WEOF .
41 If a wide-character conversion error occurs, it sets
42 \fIerrno\fP to \fBEILSEQ\fP and returns
43 .BR WEOF .
44 .PP
45 The
46 .BR getwc ()
47 function or macro functions identically to
48 .BR fgetwc ().
49 It may be implemented as a macro, and may evaluate its argument
50 more than once.
51 There is no reason ever to use it.
52 .PP
53 For nonlocking counterparts, see
54 .BR unlocked_stdio (3).
55 .SH RETURN VALUE
56 The
57 .BR fgetwc ()
58 function returns the next wide-character
59 from the stream, or
60 .BR WEOF .
61 .SH ERRORS
62 Apart from the usual ones, there is
63 .TP
64 .B EILSEQ
65 The data obtained from the input stream does not
66 form a valid character.
67 .SH CONFORMING TO
68 C99, POSIX.1-2001.
69 .SH NOTES
70 The behavior of
71 .BR fgetwc ()
72 depends on the
73 .B LC_CTYPE
74 category of the
75 current locale.
76 .PP
77 In the absence of additional information passed to the
78 .BR fopen (3)
79 call, it is
80 reasonable to expect that
81 .BR fgetwc ()
82 will actually read a multibyte sequence
83 from the stream and then convert it to a wide character.
84 .SH SEE ALSO
85 .BR fgetws (3),
86 .BR fputwc (3),
87 .BR ungetwc (3),
88 .BR unlocked_stdio (3)