@@ -46,3 +46,37 @@ pub const CP437: [char; 256] = [
46
46
'α' , 'ß' , 'Γ' , 'π' , 'Σ' , 'σ' , 'µ' , 'τ' , 'Φ' , 'Θ' , 'Ω' , 'δ' , '∞' , 'φ' , 'ε' , '∩' ,
47
47
'≡' , '±' , '≥' , '≤' , '⌠' , '⌡' , '÷' , '≈' , '°' , '∙' , '·' , '√' , 'ⁿ' , '²' , '■' , 'ff' ,
48
48
] ;
49
+
50
+ #[ rustfmt:: skip]
51
+ pub const CP1047 : [ char ; 256 ] = [
52
+ //
53
+ // Copyright (c) 2016,2024 IBM Corporation and other Contributors.
54
+ //
55
+ // All rights reserved. This program and the accompanying materials
56
+ // are made available under the terms of the Eclipse Public License v1.0
57
+ // which accompanies this distribution, and is available at
58
+ // http://www.eclipse.org/legal/epl-v10.html
59
+ //
60
+ // Contributors:
61
+ // Mark Taylor - Initial Contribution
62
+ //
63
+
64
+ // ref1 https://github.com/ibm-messaging/mq-smf-csv/blob/master/src/smfConv.c
65
+ // ref2 https://web.archive.org/web/20150607033635/http://www-01.ibm.com/software/globalization/cp/cp01047.html
66
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' ,
67
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' ,
68
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' ,
69
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' ,
70
+ ' ' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '$' , '.' , '<' , '(' , '+' , '|' ,
71
+ '&' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '!' , '$' , '*' , ')' , ';' , '.' ,
72
+ '-' , '/' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , ',' , '%' , '_' , '>' , '?' ,
73
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , ':' , '#' , '@' , '\'' , '=' , '.' ,
74
+ '.' , 'a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g' , 'h' , 'i' , '.' , '{' , '.' , '(' , '+' , '.' ,
75
+ '.' , 'j' , 'k' , 'l' , 'm' , 'n' , 'o' , 'p' , 'q' , 'r' , '.' , '}' , '.' , ')' , '.' , '.' ,
76
+ '.' , '~' , 's' , 't' , 'u' , 'v' , 'w' , 'x' , 'y' , 'z' , '.' , '.' , '.' , '.' , '.' , '.' ,
77
+ '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '.' , '[' , ']' , '.' , '.' , '.' , '-' ,
78
+ '{' , 'A' , 'B' , 'C' , 'D' , 'E' , 'F' , 'G' , 'H' , 'I' , '.' , '.' , '.' , '.' , '.' , '.' ,
79
+ '}' , 'J' , 'K' , 'L' , 'M' , 'N' , 'O' , 'P' , 'Q' , 'R' , '.' , '.' , '.' , '.' , '.' , '.' ,
80
+ '.' , '.' , 'S' , 'T' , 'U' , 'V' , 'W' , 'X' , 'Y' , 'Z' , '.' , '.' , '.' , '.' , '.' , '.' ,
81
+ '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , '.' , '.' , '.' , '.' , '.' , '.'
82
+ ] ;
0 commit comments