| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/local/bin/perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
3603
|
use strict ; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
30
|
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings ; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
31
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
487
|
use Compress::Zlib ; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
1346
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
1
|
50
|
|
|
|
132562
|
my $x = inflateInit() |
|
9
|
|
|
|
|
|
|
or die "Cannot create a inflation stream\n" ; |
|
10
|
|
|
|
|
|
|
|
|
11
|
1
|
|
|
|
|
2
|
my $input = '' ; |
|
12
|
1
|
|
|
|
|
2
|
binmode STDIN; |
|
13
|
1
|
|
|
|
|
1
|
binmode STDOUT; |
|
14
|
|
|
|
|
|
|
|
|
15
|
1
|
|
|
|
|
2
|
my ($output, $status) ; |
|
16
|
1
|
|
|
|
|
1763721
|
while (read(STDIN, $input, 4096)) |
|
17
|
|
|
|
|
|
|
{ |
|
18
|
1
|
|
|
|
|
15
|
($output, $status) = $x->inflate(\$input) ; |
|
19
|
|
|
|
|
|
|
|
|
20
|
1
|
50
|
33
|
|
|
13
|
print $output |
|
21
|
|
|
|
|
|
|
if $status == Z_OK or $status == Z_STREAM_END ; |
|
22
|
|
|
|
|
|
|
|
|
23
|
1
|
50
|
|
|
|
81
|
last if $status != Z_OK ; |
|
24
|
|
|
|
|
|
|
} |
|
25
|
|
|
|
|
|
|
|
|
26
|
1
|
50
|
|
|
|
5
|
die "inflation failed\n" |
|
27
|
|
|
|
|
|
|
unless $status == Z_STREAM_END ; |