Help for this page

Select Code to Download


  1. or download this
    open( FH , "+<" , $source ) or die "Can not open file: $source $!\n";
    binmode(FH);
    
  2. or download this
    $position = tell(FH)
    
  3. or download this
    seek( FH , $position , SEEK_SET );
    
  4. or download this
    write( FH, $example , $example_size )
        or die "Couldn't write at FH : $!\n";
    
  5. or download this
    fwrite(p, size, n, stream) PerlIO_write(perlio, buf, numbytes)
    
  6. or download this
    Useless use of a constant (FH) in void context at test.pl line 193.