Help for this page

Select Code to Download


  1. or download this
       my $read = read($fh_in, $buf, $blk_size, length($ofs));
    
  2. or download this
       my $read = read($fh_in, $newbuf, $blk_size);
       ...
       $buf .= $newbuf;
    
  3. or download this
       my $read = read($fh_in, $buf, $blk_size, length($buf));