Upgrade to Encode 1.00, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / EBCDIC / EBCDIC.pm
CommitLineData
5129552c 1package Encode::EBCDIC;
2use Encode;
67d7b5ef 3our $VERSION = do { my @r = (q$Revision: 1.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
5129552c 4
5use XSLoader;
6XSLoader::load('Encode::EBCDIC',$VERSION);
7
81;
9__END__
67d7b5ef 10
5129552c 11=head1 NAME
12
13Encode::EBCDIC - EBCDIC Encodings
14
15=head1 SYNOPSIS
16
17 use Encode qw/encode decode/;
18 $posix_bc = encode("posix-bc", $utf8); # loads Encode::EBCDIC implicitly
19 $utf8 = decode("", $posix_bc); # ditto
20
21=head1 ABSTRACT
22
23This module implements various EBCDIC-Based encodings. Encodings
24supported are as follows.
25
26 Canonical Alias Description
27 --------------------------------------------------------------------
28 cp1047
29 cp37
30 posix-bc
31
32=head1 DESCRIPTION
33
34To find how to use this module in detail, see L<Encode>.
35
36=head1 SEE ALSO
37
38L<Encode>, L<perlebcdic>
39
40=cut