[Previous] [Contents] [Next]

fgetwc()

Read a character from a stream

Synopsis:

#include <wchar.h> 

wint_t fgetwc( FILE * fp );

Library:

libc

Description:

The fgetwc() function reads the next wide character from the stream specified by fp.

Returns:

The next character from fp, cast as (wint_t)(wchar_t), or WEOF if end-of-file has been reached or if an error occurs (errno is set).

Errors:

EAGAIN
The O_NONBLOCK flag is set for fp and would have been blocked by this operation.
EBADF
The file descriptor for fp isn't valid for reading.
EINTR
A signal terminated the read operation; no data was transferred.
EIO
Either a physical I/O error has occurred, or the process is in the background and is being ignored or blocked.
EOVERFLOW
Cannot read at or beyond the offset maximum for this stream.

Classification:

ANSI

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler No
Thread Yes

See also:

errno

"Stream I/O functions" and "Wide-character functions" in the summary of functions chapter


[Previous] [Contents] [Next]