|
NAMEfgetc , getc ,
getc_unlocked , getchar ,
getchar_unlocked , getw
—
get next character or word from input stream
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdio.h>
int
int
int
int
int
int
DESCRIPTIONThefgetc () function obtains the next input character
(if present) from the stream pointed at by stream, or
the next character pushed back on the stream via
ungetc(3).
The The The The RETURN VALUESIf successful, these routines return the next requested object from the stream. Character values are returned as an unsigned char converted to an int. If the stream is at end-of-file or a read error occurs, the routines returnEOF . The routines
feof(3) and
ferror(3)
must be used to distinguish between end-of-file and error. If an error occurs,
the global variable errno is set to indicate the error.
The end-of-file condition is remembered, even on a terminal, and all
subsequent attempts to read will return EOF until the
condition is cleared with
clearerr(3).
SEE ALSOferror(3), flockfile(3), fopen(3), fread(3), getwc(3), putc(3), ungetc(3)STANDARDSThefgetc (), getc (), and
getchar () functions conform to
ISO/IEC 9899:1990 (“ISO C90”).
The getc_unlocked () and
getchar_unlocked () functions conform to
IEEE Std 1003.1-2001 (“POSIX.1”).
HISTORYThegetc () and getw () functions
appeared in a similar form in Version 1 AT&T
UNIX; and were integrated into stdio in
Version 7 AT&T UNIX;
getchar () in Version 4
AT&T UNIX; and fgetc () in
Version 7 AT&T UNIX.
BUGSSinceEOF is a valid integer value,
feof(3) and
ferror(3)
must be used to check for failure after calling
getw (). The size and byte order of an
int varies from one machine to another, and
getw () is not recommended for portable applications.
Visit the GSP FreeBSD Man Page Interface. |