home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / FGETC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  233 b   |  11 lines

  1. /* fgetc.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <stdio.h>
  4.  
  5. int fgetc (FILE *stream)
  6. {
  7.   return (--stream->rcount >= 0
  8.           ? (unsigned char)*stream->ptr++
  9.           : _fill (stream));
  10. }
  11.