Parent Directory
|
Revision Log
added to the repository
1 | #!/usr/bin/perl |
2 | use strict; |
3 | |
4 | require Encode::EUCJP1997OPENNEC; |
5 | |
6 | my $file_name = shift; |
7 | |
8 | open my $file, '<', $file_name; |
9 | local $/ = undef; |
10 | my $file_data = <$file>; |
11 | |
12 | Encode::decode ('euc-jp-1997-open-nec', $file_data, 1); |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |