File Coverage

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


line stmt bran cond sub pod time code
1              
2             package String::CRC32;
3              
4 1     1   347 use strict;
  1         2  
  1         29  
5 1     1   5 use warnings;
  1         1  
  1         29  
6              
7             require Exporter;
8 1     1   4 use XSLoader ();
  1         1  
  1         90  
9              
10             our @ISA = qw(Exporter);
11              
12             our $VERSION = '2.100';
13              
14             # Items to export into caller's namespace by default
15             our @EXPORT = qw(crc32);
16              
17             # Other items we are prepared to export if requested
18             our @EXPORT_OK = qw();
19              
20             XSLoader::load( 'String::CRC32', $VERSION );
21              
22             1;