-

Functions HI-TECH C GETC

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 20:11, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>GETC</strong> ==SYNOPSIS== #include <stdio.h> int getc(FILE * stream) FILE * stream; ==DESCRIPTION== One character is read from the specified stream and r...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

GETC

SYNOPSIS

#include  <stdio.h>

int getc(FILE * stream)
FILE * stream;


DESCRIPTION

One character is read from the specified stream and returned. EOF will be returned on end-of-file or error. This is the macro version of fgetc(), and is defined in stdio.h.