Fix test failures introduced by the change of flags on op_sort
[p5sagit/p5-mst-13.2.git] / ext / Encode / EBCDIC / EBCDIC.pm
CommitLineData
5129552c 1package Encode::EBCDIC;
2use Encode;
7237418a 3our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
5129552c 4
5use XSLoader;
b2704119 6XSLoader::load(__PACKAGE__,$VERSION);
5129552c 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 --------------------------------------------------------------------
a999c27c 28 cp37
29 cp500
30 cp875
31 cp1026
32 cp1047
5129552c 33 posix-bc
34
35=head1 DESCRIPTION
36
37To find how to use this module in detail, see L<Encode>.
38
39=head1 SEE ALSO
40
41L<Encode>, L<perlebcdic>
42
43=cut