Help for this page

Select Code to Download


  1. or download this
    # count length of the strings
    my %len;
    ...
            update_max(%len, $att, $data{$nr}{$att});
        }
    }
    
  2. or download this
    sub update_max(\%$$) {
        my ($ref_data, $att, $val) = @_;
    ...
            $ref_data->{$att} = $siz2;
        }
    }