Parent Directory
|
Revision Log
2002-10-05 Nanashi-san * Table.pm: New module. (Commited by Wakaba <w@suika.fam.cx>.)
| 1 | wakaba | 1.2 | =head1 NAME |
| 2 | |||
| 3 | internal.pl --- Utilities to get information of internal code | ||
| 4 | (to generate dumped script). | ||
| 5 | |||
| 6 | =head1 DESCRIPTION | ||
| 7 | |||
| 8 | This library collects functions and constants of internal | ||
| 9 | coding system properties. Internal code allocation is | ||
| 10 | temporary so that (pre-dumped) source script should not | ||
| 11 | be embeded internal code related information (such as | ||
| 12 | code point of a character from ISO-IR) as far as possible. | ||
| 13 | |||
| 14 | =cut | ||
| 15 | |||
| 16 | wakaba | 1.1 | package internal; |
| 17 | use strict; | ||
| 18 | use 5.7.3; | ||
| 19 | |||
| 20 | use vars qw/%cp_start/; | ||
| 21 | |||
| 22 |