home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib32.zoo / fgetc.c < prev    next >
C/C++ Source or Header  |  1992-09-17  |  194b  |  13 lines

  1. #include <stdio.h>
  2.  
  3. int fgetc(fp)
  4. FILE *fp;
  5. {
  6.     int c;
  7.  
  8.     do {
  9.     c = --fp->_cnt >= 0 ? ((int)*fp->_ptr++) : _filbuf(fp);
  10.     } while ((!(fp->_flag & _IOBIN)) && (c == '\r'));
  11.     return c;
  12. }
  13.