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