virtual int_type pbackfail(int_type c = T::eof());
The protected virtual member function endeavors to put back an element into the input buffer, then make it the current
element (pointed to by the next pointer). If c == T::
eof
()
, the element to push back is effectively the one already in
the stream before the current element. Otherwise, that element is replaced by x = T::
to_char_type
(c)
. The
function can put back an element in various ways:
x
, it can simply decrement the
next pointer for the input buffer.x
in that position.ungetc
for an
element of type char.If the function cannot succeed, it returns T::eof()
. Otherwise, it returns T::
not_eof
(c)
.