Help for this page

Select Code to Download


  1. or download this
    # 1.
    sub parse_header {
    ...
      my $header = shift(); 
      ....
    }
    
  2. or download this
    # 2.
    sub parse_header {
    ...
      my $header = $_[0];
      ....
    }