You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
268 B
15 lines
268 B
#!/usr/bin/perl
|
|
#
|
|
# Simply create a table of all 256 characters
|
|
# (c) 2003, Robert Spalek <robert@ucw.cz>
|
|
#
|
|
|
|
use open OUT => ":raw";
|
|
|
|
open(fo, '>tmp/tab256') || die;
|
|
for ($i=0; $i<256; $i++)
|
|
{
|
|
next if $i==10 || $i==13;
|
|
printf fo "%02X\t%c\n", $i, $i;
|
|
}
|
|
close(fo);
|
|
|