michael@0: #!/usr/local/bin/perl michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: use strict; michael@0: require "genverifier.pm"; michael@0: use genverifier; michael@0: michael@0: michael@0: my(@cp1252_cls); michael@0: my(@cp1252_st); michael@0: my($cp1252_ver); michael@0: michael@0: michael@0: @cp1252_cls = ( michael@0: [ 0x00 , 0x00 , 1 ], michael@0: [ 0x0e , 0x0f , 0 ], michael@0: [ 0x1b , 0x1b , 0 ], michael@0: [ 0x81 , 0x81 , 0 ], michael@0: [ 0x8d , 0x8d , 0 ], michael@0: [ 0x8f , 0x8f , 0 ], michael@0: [ 0x90 , 0x90 , 0 ], michael@0: [ 0x9d , 0x9d , 0 ], michael@0: [ 0xc0 , 0xd6 , 1 ], michael@0: [ 0xd8 , 0xf6 , 1 ], michael@0: [ 0xf8 , 0xff , 1 ], michael@0: [ 0x8a , 0x8a , 1 ], michael@0: [ 0x8c , 0x8c , 1 ], michael@0: [ 0x8e , 0x8e , 1 ], michael@0: [ 0x9a , 0x9a , 1 ], michael@0: [ 0x9c , 0x9c , 1 ], michael@0: [ 0x9e , 0x9e , 1 ], michael@0: [ 0x9f , 0x9f , 1 ], michael@0: [ 0x00 , 0xff , 2 ], michael@0: ); michael@0: michael@0: package genverifier; michael@0: @cp1252_st = ( michael@0: # 0 1 2 michael@0: 1, 3, 0, # Start State - 0 michael@0: 1, 1, 1, # Error State - 1 michael@0: 2, 2, 2, # ItsMe State - 2 michael@0: 1, 4, 0, # State - 3 michael@0: 1, 5, 4, # State - 4 michael@0: 1, 1, 4, # State - 5 michael@0: ); michael@0: michael@0: michael@0: $cp1252_ver = genverifier::GenVerifier("CP1252", "windows-1252", michael@0: \@cp1252_cls, 3, \@cp1252_st); michael@0: print $cp1252_ver; michael@0: michael@0: michael@0: