File Coverage

blib/lib/String/CRC32.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package String::CRC32;
3              
4 1     1   325 use strict;
  1         1  
  1         30  
5 1     1   4 use warnings;
  1         2  
  1         28  
6              
7             require Exporter;
8 1     1   5 use XSLoader ();
  1         2  
  1         32  
9              
10 1     1   5 use vars qw/ @ISA $VERSION @EXPORT_OK @EXPORT /;
  1         2  
  1         135  
11              
12             @ISA = qw(Exporter);
13              
14             $VERSION = 2.000;
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             XSLoader::load( 'String::CRC32', $VERSION );
23              
24             1;