home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / com / utils / golded / v_240 / ibm_cmp.chs < prev    next >
Encoding:
Text File  |  1993-03-07  |  4.2 KB  |  162 lines

  1. ;
  2. ; This file is a charset conversion module in text form.
  3. ;
  4. ; This module Converts IBM extended characters to Composed characters.
  5. ;
  6. ; Format: ID, version, level,
  7. ;         from charset, to charset,
  8. ;         128 entries: first & second byte
  9. ;         "END"
  10. ; Lines beginning with a ";" or a ";" after the entries are comments
  11. ;
  12. ; Unkown characters are mapped to the "?" character.
  13. ;
  14. ; cedilla = ,   ; dieresis = ..       ; acute = '
  15. ; grave = `     ; circumflex = ^      ; ring = o
  16. ; tilde = ~     ; caron = v 
  17. ; All of these are above the character, apart from the cedilla which is below.
  18. ;
  19. ; \ is the escape character: \0 means decimal zero,
  20. ; \dnnn where nnn is a decimal number is the ordinal value of the character
  21. ; \xnn where nn is a hexadecimal number
  22. ; e.g.: \d32 is the ASCII space character
  23. ; Two \\ is the character "\" itself.
  24. ;
  25. 0               ; ID number
  26. 0               ; version number
  27. ;
  28. 0               ; level number
  29. ;
  30. IBMPC           ; from set
  31. COMPOSED        ; to set
  32. ;
  33. , \x8D C        ; C with cedilla
  34. u \x8D "        ; u dieresis
  35. e \x8D '        ; e acute
  36. a \x8D ^        ; a circumflex
  37. a \x8D "        ; a dieresis
  38. a \x8D `        ; a grave
  39. a \x8D *        ; a ring
  40. , \x8D c        ; c cedilla
  41. e \x8D ^        ; e circumflex
  42. e \x8D "        ; e dieresis
  43. e \x8D `        ; e grave
  44. i \x8D "        ; i dieresis
  45. i \x8D ^        ; i circumflex
  46. i \x8D `        ; i grave
  47. A \x8D "        ; A dieresis
  48. A \x8D *        ; A ring
  49. E \x8D '        ; E acute
  50. a \x8D e        ; ae
  51. A \x8D E        ; AE
  52. o \x8D ^        ; o circumflex
  53. o \x8D "        ; o dieresis
  54. o \x8D `        ; o acute
  55. u \x8D ^        ; u circumflex
  56. u \x8D `        ; u grave
  57. y \x8D "        ; y dieresis
  58. O \x8D "        ; O dieresis
  59. U \x8D "        ; U dieresis
  60. C \x8D t        ; cent
  61. P \x8D d        ; pound sterling
  62. Y \x8D n        ; yen
  63. P \x8D t        ; Pt
  64. F \x8D l        ; florin
  65. a \x8D '        ; a acute
  66. i \x8D '        ; i grave
  67. o \x8D '        ; o grave
  68. u \x8D '        ; u grave
  69. n \x8D ~        ; n tilde
  70. N \x8D ~        ; N tilde
  71. a \x8D _        ; ord feminine
  72. o \x8D _        ; ord masculine
  73. ? \x8D ?        ; question downwards
  74. ?               ;
  75. ?               ; logical not
  76. ' \x8D 2        ; half fraction
  77. ' \x8D 4        ; quarter fraction
  78. ! \x8D !        ; exclam downwards
  79. < \x8D <        ; guillemot left
  80. > \x8D >        ; guillemot right
  81. #               ;
  82. #               ;
  83. #               ;
  84. |               ;
  85. |               ;
  86. |               ;
  87. |               ;
  88. +               ;
  89. +               ;
  90. |               ;
  91. |               ;
  92. +               ;
  93. +               ;
  94. +               ;
  95. +               ;
  96. +               ;
  97. +               ;
  98. -               ;
  99. -               ;
  100. |               ;
  101. -               ;
  102. +               ;
  103. |               ;
  104. |               ;
  105. +               ;
  106. +               ;
  107. =               ;
  108. =               ;
  109. |               ;
  110. =               ;
  111. +               ;
  112. =               ;
  113. -               ;
  114. =               ;
  115. -               ;
  116. +               ;
  117. +               ;
  118. +               ;
  119. +               ;
  120. |               ;
  121. +               ;
  122. +               ;
  123. +               ;
  124. #               ;
  125. -               ;
  126. |               ;
  127. |               ;
  128. -               ;
  129. ?               ; alpha
  130. s \x8D s        ; german double s (misused as Beta)
  131. ?               ; Gamma
  132. p \x8D i        ; pi
  133. ?               ; Sigma (summation)
  134. ?               ; sigma
  135. ?               ; mu
  136. ?               ; gamma
  137. ?               ; Phi
  138. ?               ; Theta
  139. ?               ; Omega
  140. ?               ; delta
  141. ?               ; infinity
  142. ?               ; o slash
  143. ?               ; element
  144. ?               ; intersection
  145. = \x8D =        ; equivalence
  146. + \x8D -        ; plusminus
  147. > \x8D =        ; greater equals
  148. < \x8D =        ; smaller equals
  149. ?               ; integral top
  150. ?               ; integral bottom
  151. /               ; divide
  152. ~ \x8D =        ; approx.
  153. ?               ; ring / degree
  154. .               ; centered dot
  155. -               ; en dash
  156. ?               ; radical
  157. ^ \x8D n        ; to the n'th power
  158. ^ \x8D 2        ; to the second power
  159. *               ;
  160. \d32            ; space
  161. END
  162.