-

Functions HI-TECH C GETC

From HI-TECH C for CP/M Fan WIKI(EN)
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.