File: CRC32.pm

package info (click to toggle)
libstring-crc32-perl 2.100-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 112 kB
  • sloc: perl: 56; ansic: 26; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 344 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

package String::CRC32;

use strict;
use warnings;

require Exporter;
use XSLoader ();

our @ISA = qw(Exporter);

our $VERSION = '2.100';

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

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

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

1;