value = UnGetC(fh, character)
D0 D1 D2
LONG UnGetC(BPTR, LONG)
Pushes the character specified back into the input buffer. Every time you use a buffered read function, you can always push back 1 character. You may be able to push back more, though it is not recommended, since there is no guarantee on how many can be pushed back at a given moment.
Passing -1 for the character will cause the last character read to be pushed back. If the last character read was an EOF, the next character read will be an EOF.
- Note:
-
UnGetC can be used to make sure that a FileHandle is set up
as a read FileHandle. This is only of importance if you are writing a shell, and must manipulate the FileHandle's buffer.
In V36, UnGetC(fh,-1) after an EOF would not cause the next character read to be an EOF. This was fixed for V37.