getc()

NAME

fgetc(), getc(), getchar() - get next character or word from input stream

SYNOPSIS

#include <stdio.h>

int fgetc (FILE *stream) int getc (FILE *stream) int getchar(void)

DESCRIPTION

The fgetc(3) function obtains the next input character (if present) from the stream pointed at by stream, or the next character pushed back on the stream through ungetc(1).

The getc(3) function acts essentially identically to fgetc(3), but is a macro that expands in-line.

The getchar(3) function is equivalent to:

getc(stdin)

Once end-of-file is reached, 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).

RETURN VALUES

If successful, these routines return the next requested object from the stream. If the stream is at end-of-file or a read error occurs, the routines return EOF. Since EOF is a valid integer value, you must use feof(3) and ferror(3) to distinguish between end-of-file and error. If an error occurs, the global variable errno is set to indicate the error.

ERRORS

These functions can set errno to the following values:

[EBADF]
Stream is not a valid file descriptor open for reading.
[EIO]
An I/O error occurred while reading from the file system.
[EINTR]
A read from a slow device was interrupted before any data arrived by the delivery of a signal.
[EINVAL]
The pointer associated with stream was negative.
[EAGAIN]
The file was marked for non-blocking I/O, and no data were ready to be read.

SEE ALSO

ferror(3)

fread(3)

fopen(3)

putc(3)

ungetc(3)

500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at webmaster@systemmanager.forsenergy.ru to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.