Admin Panel

#include <errno.h>
#include "stdio.h"

int __fflush(FILE *stream);

#ifdef __posix_threads__
static int __ungetc2(int c, FILE * stream);
#endif
int ungetc(int c,FILE *stream) {
#ifdef __posix_threads__
	int r;
	__STDIO_LOCK(stream);
	r = __ungetc2(c, stream);
	__STDIO_UNLOCK(stream);
	return r;
}
static int __ungetc2(int c,FILE *stream) {
#endif
  if(c==EOF)
    return EOF;
  if(stream->_flags&__SERR)/* Error on stream */
  { errno=EPERM;
    return EOF; }
  if(stream->_flags&__SWR) /* File is in write mode */
    if(__fflush(stream))  /* write buffer */
      return EOF;
  if(stream->tmpp==NULL)
  { if(stream->_flags&__SRD) /* File is in read mode */
    { stream->tmpp=stream->_p; /* store actual position */
      stream->tmpinc=stream->_r;
      stream->_p=&stream->unget[4]; /* and use other buffer */
      stream->_r=0;
    }else /* File is in indeterminated state */
    { stream->tmpp=(unsigned char *)2; /* Dummy */
      stream->tmpinc=0;
      stream->_p=&stream->unget[4]; /* use other buffer */
      stream->_r=0;
      stream->_flags|=__SRD;
    }
  }
  if(stream->_r==4) /* ungetc buffer overflow */
    return EOF;
  stream->_r++;
  return *--stream->_p=c;
}