rework the states. this is a tool change. Won't break build. The tool is not run in the build process

This commit is contained in:
ftang%netscape.com 1999-08-19 21:12:05 +00:00
Родитель 9e336f7a23
Коммит e09d1ecfc4
1 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -12,9 +12,9 @@ my($sjis_ver);
[ 0x00 , 0x00 , 0 ],
[ 0x0e , 0x0f , 0 ],
[ 0x1b , 0x1b , 0 ],
[ 0x85 , 0x86 , 0 ],
[ 0xeb , 0xec , 0 ],
[ 0xfd , 0xff , 0 ],
[ 0x85 , 0x86 , 5 ],
[ 0xeb , 0xec , 5 ],
[ 0x01 , 0x1a , 1 ],
[ 0x1c , 0x3f , 1 ],
[ 0x7f , 0x7f , 1 ],
@ -22,19 +22,19 @@ my($sjis_ver);
[ 0xa1 , 0xdf , 2 ],
[ 0x80 , 0x9f , 3 ],
[ 0xa0 , 0xa0 , 4 ],
[ 0xe0 , 0xfc , 3 ]
[ 0xe0 , 0xfc , 3 ],
);
package genverifier;
@sjis_st = (
# 0 1 2 3 4
1, 0, 0, 3, 1, # Start State - 0
1, 1, 1, 1, 1, # Error State - 1
2, 2, 2, 2, 2, # ItsMe State - 2
1, 1, 0, 0, 0, # State - 3
# 0 1 2 3 4 5
1, 0, 0, 3, 1, 1, # Start State - 0
1, 1, 1, 1, 1, 1, # Error State - 1
2, 2, 2, 2, 2, 2, # ItsMe State - 2
1, 1, 0, 0, 0, 0, # State - 3
);
$sjis_ver = genverifier::GenVerifier("SJIS", "Shift_JIS", \@sjis_cls, 5, \@sjis_st);
$sjis_ver = genverifier::GenVerifier("SJIS", "Shift_JIS", \@sjis_cls, 6, \@sjis_st);
print $sjis_ver;