Tagged Questions
The ungetc tag has no wiki summary.
2
votes
2answers
76 views
ungetc: number of bytes of pushback
ungetc is only guaranteed to take one byte of pushback. On the other hand, I've tested it on Windows and Linux and it seems to work with two bytes.
Are there any platforms (e.g. any current Unix ...
2
votes
6answers
408 views
ungetc in Python
Some file read (readlines()) functions in Python
copy the file contents to memory (as a list)
I need to process a file that's too large to
be copied in memory and as such need to use
a file pointer ...
1
vote
3answers
126 views
Is there a C++ version of ungetc?
Is there a C++ version of ungetc?
That is, can I put a character back onto an istream?
1
vote
3answers
231 views
InputStreamReader.markSupported is false
I need to “un-read” characters from an InputStreamReader. For that purpose I wanted to use mark and reset but markSupported returns false for the InputStreamReader class, since it doesn’t maintain an ...