Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    read ( $memory_file, $stuff, 0x200 );      #should return a value but 
    +doesnt
    print ( $stuff );
    
  2. or download this
    open ( my $in_file, '<', "file" );
    binmode( $in_file );
    ...
    
    open my $out_file, '>', "reversed";
    syswrite( $out_file, $temp);