- or download this
use open IN=>":raw", OUT=>":raw";
- or download this
*CORE::GLOBAL::open= sub {
my( $fh, $arg, @args )= @_;
...
binmode( $fh );
return $ret;
};
- or download this
if (PL_op && PL_op->op_type == OP_OPEN) {
/* set up disciplines */
U8 flags = PL_op->op_private;
in_raw = (flags & OPpOPEN_IN_RAW);
- or download this
if (PL_op) {