Help for this page

Select Code to Download


  1. or download this
    sub blah {
      my $file = shift;
    ...
      my $retval = open(FHANDLE, $file);
    ...
    }
    
  2. or download this
    my $retval = sysopen(FHANDLE, $file, O_RDONLY);