1*0Sstevel@tonic-gatepackage Encode::EBCDIC;
2*0Sstevel@tonic-gateuse Encode;
3*0Sstevel@tonic-gateour $VERSION = do { my @r = (q$Revision: 1.21 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
4*0Sstevel@tonic-gate
5*0Sstevel@tonic-gateuse XSLoader;
6*0Sstevel@tonic-gateXSLoader::load(__PACKAGE__,$VERSION);
7*0Sstevel@tonic-gate
8*0Sstevel@tonic-gate1;
9*0Sstevel@tonic-gate__END__
10*0Sstevel@tonic-gate
11*0Sstevel@tonic-gate=head1 NAME
12*0Sstevel@tonic-gate
13*0Sstevel@tonic-gateEncode::EBCDIC - EBCDIC Encodings
14*0Sstevel@tonic-gate
15*0Sstevel@tonic-gate=head1 SYNOPSIS
16*0Sstevel@tonic-gate
17*0Sstevel@tonic-gate    use Encode qw/encode decode/;
18*0Sstevel@tonic-gate    $posix_bc  = encode("posix-bc", $utf8); # loads Encode::EBCDIC implicitly
19*0Sstevel@tonic-gate    $utf8 = decode("", $posix_bc);          # ditto
20*0Sstevel@tonic-gate
21*0Sstevel@tonic-gate=head1 ABSTRACT
22*0Sstevel@tonic-gate
23*0Sstevel@tonic-gateThis module implements various EBCDIC-Based encodings.  Encodings
24*0Sstevel@tonic-gatesupported are as follows.
25*0Sstevel@tonic-gate
26*0Sstevel@tonic-gate  Canonical   Alias		Description
27*0Sstevel@tonic-gate  --------------------------------------------------------------------
28*0Sstevel@tonic-gate  cp37
29*0Sstevel@tonic-gate  cp500
30*0Sstevel@tonic-gate  cp875
31*0Sstevel@tonic-gate  cp1026
32*0Sstevel@tonic-gate  cp1047
33*0Sstevel@tonic-gate  posix-bc
34*0Sstevel@tonic-gate
35*0Sstevel@tonic-gate=head1 DESCRIPTION
36*0Sstevel@tonic-gate
37*0Sstevel@tonic-gateTo find how to use this module in detail, see L<Encode>.
38*0Sstevel@tonic-gate
39*0Sstevel@tonic-gate=head1 SEE ALSO
40*0Sstevel@tonic-gate
41*0Sstevel@tonic-gateL<Encode>, L<perlebcdic>
42*0Sstevel@tonic-gate
43*0Sstevel@tonic-gate=cut
44