home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / src / stdio / c / ungetc < prev   
Text File  |  1994-03-08  |  315b  |  16 lines

  1. static char sccs_id[] = "@(#) ungetc.c 1.2 " __DATE__ " HJR";
  2.  
  3. /* ungetc.c (c) Copyright 1990 H.Rogers */
  4.  
  5. #include <stdio.h>
  6.  
  7. __STDIOLIB__
  8.  
  9. #define ungetc(c,f) \
  10.     (((f)->i_ptr > (f)->i_base) ? ((f)->i_cnt++,*--(f)->i_ptr = (c)) : -1)
  11.  
  12. int (ungetc) (register int c, register FILE * f)
  13. {
  14.   return (ungetc (c, f));
  15. }
  16.