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