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