line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package String::CRC32; |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
291
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
5
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
47
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
require Exporter; |
8
|
|
|
|
|
|
|
require DynaLoader; |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5
|
use vars qw/ @ISA $VERSION @EXPORT_OK @EXPORT /; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
125
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
@ISA = qw(Exporter DynaLoader); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
$VERSION = 1.800; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# Items to export into caller's namespace by default |
17
|
|
|
|
|
|
|
@EXPORT = qw(crc32); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# Other items we are prepared to export if requested |
20
|
|
|
|
|
|
|
@EXPORT_OK = qw(); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
bootstrap String::CRC32; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |