$io->close
$io->eof
+ $io->fcntl( FUNCTION, SCALAR )
$io->fileno
$io->format_write( [FORMAT_NAME] )
$io->getc
+ $io->ioctl( FUNCTION, SCALAR )
$io->read ( BUF, LEN, [OFFSET] )
$io->print ( ARGS )
$io->printf ( FMT, [ARGS] )
C<fdopen> is like an ordinary C<open> except that its first parameter
is not a filename but rather a file handle name, an IO::Handle object,
-or a file descriptor number.
+or a file descriptor number. (For the documentation of the C<open>
+method, see L<IO::File>.)
=item $io->opened
require Exporter;
@ISA = qw(Exporter);
-$VERSION = "1.27_01";
+$VERSION = "1.27_02";
$VERSION = eval $VERSION;
@EXPORT_OK = qw(
}
}
-# XXX undocumented
sub fcntl {
@_ == 3 || croak 'usage: $io->fcntl( OP, VALUE );';
my ($io, $op) = @_;
return fcntl($io, $op, $_[2]);
}
-# XXX undocumented
sub ioctl {
@_ == 3 || croak 'usage: $io->ioctl( OP, VALUE );';
my ($io, $op) = @_;