MirBSD manpage: fgetc(3), getc(3), getchar(3), getw(3)

GETC(3)                    BSD Programmer's Manual                     GETC(3)

NAME

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

SYNOPSIS

     #include <stdio.h>

     int
     fgetc(FILE *stream);

     int
     getc(FILE *stream);

     int
     getchar(void);

     int
     getw(FILE *stream);

DESCRIPTION

     The fgetc() 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 getc() function acts essentially identically to fgetc(), but is a
     macro that expands in-line.

     The getchar() function is equivalent to getc() with the argument stdin.

     The getw() function obtains the next int (if present) from the stream
     pointed at by stream.

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 rou-
     tines return EOF. The routines feof(3) and ferror(3) must be used to dis-
     tinguish 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 ALSO

     ferror(3), fopen(3), fread(3), putc(3), ungetc(3)

STANDARDS

     The fgetc(), getc(), and getchar() functions conform to ANSI X3.159-1989
     ("ANSI C89").

BUGS

     Since EOF is a valid integer value, feof(3) and ferror(3) must be used to
     check for failure after calling getw().

     Since the size and byte order of an int may vary from one machine to
     another, getw() is not recommended for portable applications.

MirBSD #10-current               June 4, 1993                                1

Generated on 2022-12-24 01:00:14 by $MirOS: src/scripts/roff2htm,v 1.113 2022/12/21 23:14:31 tg Exp $ — This product includes material provided by mirabilos.

These manual pages and other documentation are copyrighted by their respective writers; their sources are available at the project’s CVSweb, AnonCVS and other mirrors. The rest is Copyright © 2002–2022 MirBSD.

This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report — diffs preferred.

Kontakt / Impressum & Datenschutzerklärung