File: CRC32.pm

package info (click to toggle)
libstring-crc32-perl 2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: perl: 57; ansic: 26; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

package String::CRC32;

use strict;
use warnings;

require Exporter;
use XSLoader ();

use vars qw/ @ISA $VERSION @EXPORT_OK @EXPORT /;

@ISA = qw(Exporter);

$VERSION = 2.000;

# Items to export into caller's namespace by default
@EXPORT = qw(crc32);

# Other items we are prepared to export if requested
@EXPORT_OK = qw();

XSLoader::load( 'String::CRC32', $VERSION );

1;