summaryrefslogtreecommitdiff
path: root/cpan/lib/Jcode/Unicode/Constants.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-06-01 14:27:20 +0000
committerfukachan <fukachan>2001-06-01 14:27:20 +0000
commitb9f628acbd9ade8eac8cb0b77d9c28611120f33e (patch)
treeda2b07299f4a0396062241a2a3d3fcffa6be7d32 /cpan/lib/Jcode/Unicode/Constants.pm
parent741843f930a4aa542ca51e7e27b9b2871f36a66b (diff)
downloadfml8-Jcode-0-71.tar.gz
fml8-Jcode-0-71.tar.bz2
fml8-Jcode-0-71.zip
Jcode-0.71Jcode-0-71
Diffstat (limited to 'cpan/lib/Jcode/Unicode/Constants.pm')
-rw-r--r--cpan/lib/Jcode/Unicode/Constants.pm69
1 files changed, 34 insertions, 35 deletions
diff --git a/cpan/lib/Jcode/Unicode/Constants.pm b/cpan/lib/Jcode/Unicode/Constants.pm
index 4538da03..f3769683 100644
--- a/cpan/lib/Jcode/Unicode/Constants.pm
+++ b/cpan/lib/Jcode/Unicode/Constants.pm
@@ -1,14 +1,45 @@
#
-# $Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $
+# $Id: Constants.pm,v 1.2 2001/05/18 05:14:38 dankogai Exp dankogai $
#
package Jcode::Unicode::Constants;
+=head1 NAME
+
+Jcode::Unicode::Constants -- UCS2-EUC conversion table
+
+=head1 SYNOPSIS
+
+NONE
+
+=head1 DESCRIPTION
+
+This module just contains a huge hash that converts UCS2 from/to EUC.
+
+=head1 SEE ALSO
+
+ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/
+
+Unicode mapping data
+
+=head1 COPYRIGHT
+
+Copyright 1999 Dan Kogai <dankogai@dan.co.jp>
+
+This library is free software; you can redistribute it
+and/or modify it under the same terms as Perl itself.
+
+Unicode conversion table here is based on files at
+ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/,
+Copyright (c) 1991-1994 Unicode, Inc.
+
+=cut
+
use strict;
use vars qw($RCSID $VERSION);
-$RCSID = q$Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $;
-$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+$RCSID = q$Id: Constants.pm,v 1.2 2001/05/18 05:14:38 dankogai Exp dankogai $;
+$VERSION = do { my @r = (q$Revision: 1.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
use Carp;
@@ -13041,35 +13072,3 @@ for my $c (0x00..0x7f){
%_E2U = ();
1;
-
-
-=head1 NAME
-
-Jcode::Unicode::Constants -- UCS2-EUC conversion table
-
-=head1 SYNOPSIS
-
-NONE
-
-=head1 DESCRIPTION
-
-This module just contains a huge hash that converts UCS2 from/to EUC.
-
-=head1 SEE ALSO
-
-=item ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/
-
-Unicode mapping data
-
-=head1 COPYRIGHT
-
-Copyright 1999 Dan Kogai <dankogai@dan.co.jp>
-
-This library is free software; you can redistribute it
-and/or modify it under the same terms as Perl itself.
-
-Unicode conversion table here is based on files at
-ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/,
-Copyright (c) 1991-1994 Unicode, Inc.
-
-=cut