mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
c4ca9246e6
a FileHandle which supports ungetting of multiple bytes. PR: 58673 Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
13 lines
427 B
Plaintext
13 lines
427 B
Plaintext
FileHandle::Unget is a drop-in replacement for FileHandle which allows more
|
|
than one byte to be placed back on the input. It supports an ungetc(ORD) which
|
|
can be called more than once in a row, and an ungets(SCALAR) which places a
|
|
string of bytes back on the input.
|
|
|
|
Version 0.11:
|
|
- Fixed uninitialized value warnings
|
|
- Create SourceForge project
|
|
|
|
WWW: http://fh-unget.sourceforge.net/
|
|
|
|
Author: David Coppit <david@coppit.org>
|