Upgrade to Encode 2.00.
[p5sagit/p5-mst-13.2.git] / ext / Encode / EBCDIC / EBCDIC.pm
1 package Encode::EBCDIC;
2 use Encode;
3 our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
4
5 use XSLoader;
6 XSLoader::load(__PACKAGE__,$VERSION);
7
8 1;
9 __END__
10
11 =head1 NAME
12
13 Encode::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
23 This module implements various EBCDIC-Based encodings.  Encodings
24 supported are as follows.   
25
26   Canonical   Alias             Description
27   --------------------------------------------------------------------
28   cp37  
29   cp500  
30   cp875  
31   cp1026  
32   cp1047  
33   posix-bc
34
35 =head1 DESCRIPTION
36
37 To find how to use this module in detail, see L<Encode>.
38
39 =head1 SEE ALSO
40
41 L<Encode>, L<perlebcdic>
42
43 =cut