/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#include "sfhdr.h"
/* Push back one byte to a given SF_READ stream
**
** Written by Kiem-Phong Vo.
*/
#if __STD_C
#else
Sfio_t *f;
int type;
#endif
{
/* hmm! This should never happen */
return -1;
/* close the unget stream */
if(type != SF_CLOSING)
return 1;
}
#if __STD_C
#else
int sfungetc(f,c)
Sfio_t* f; /* push back one byte to this stream */
int c; /* the value to be pushed back */
#endif
{
SFMTXDECL(f);
SFMTXENTER(f, -1);
SFMTXRETURN(f, -1);
SFLOCK(f,0);
/* fast handling of the typical unget */
{ f->next -= 1;
goto done;
}
/* make a string stream for unget characters */
{ c = -1;
goto done;
}
}
/* space for data */
if(f->size < 0)
f->size = 0;
{ c = -1;
goto done;
}
if(f->data)
f->size += 16;
}
done:
SFOPEN(f,0);
SFMTXRETURN(f, c);
}