updated git and svn scripts
[xrzperl.git] / asctable
blobdf4e17ec1c2e1b8ab2e14cb2e03b0cf5fc7db46a
1 #!/usr/bin/perl -W
2 exit 0 unless(system("plhelp",$0,(@ARGV)));
4 sub format {
5 my $n = shift;
6 print chr($n) . " = $n\t";
9 $COLUMS=10;
11 foreach((1 .. 128)){
12 print chr($_) . "($_)";
13 if (($_%$COLUMS) == 0) {
14 print("\n");
16 else {
17 print("\t");
20 print("\n");