home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / ungetc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  220 b   |  22 lines

  1.  
  2. /*
  3.  *  UNGETC.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. int
  11. ungetc(c, fi)
  12. int c;
  13. FILE *fi;
  14. {
  15.     if (fi->sd_UC < 0) {
  16.     fi->sd_UC = c;
  17.     return(c);
  18.     }
  19.     return(EOF);
  20. }
  21.  
  22.