ack/lang/cem/libcc/stdio/ungetc.c

21 lines
344 B
C
Raw Normal View History

1987-03-31 10:45:53 +00:00
/* $Header$ */
1987-01-27 15:57:55 +00:00
#include <stdio.h>
ungetc(ch, iop)
int ch;
register FILE *iop;
1987-01-27 15:57:55 +00:00
{
unsigned char *p;
1987-01-27 15:57:55 +00:00
if ( ch < 0 || !io_testflag(iop,IO_READMODE))
return EOF;
if (iop->_ptr == iop->_buf) {
if (iop->_count != 0) return EOF;
iop->_ptr++;
}
iop->_count++;
p = --(iop->_ptr); /* ??? Bloody vax assembler !!! */
*p = ch;
1987-01-27 15:57:55 +00:00
return(ch);
}