encodings_dos.def 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Copyright (C) 2001-2002 Free Software Foundation, Inc.
  2. This file is part of the GNU LIBICONV Library.
  3. The GNU LIBICONV Library is free software; you can redistribute it
  4. and/or modify it under the terms of the GNU Library General Public
  5. License as published by the Free Software Foundation; either version 2
  6. of the License, or (at your option) any later version.
  7. The GNU LIBICONV Library is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  13. If not, see <http://www.gnu.org/licenses/>. */
  14. /* Encodings used by system dependent locales on MSDOS. */
  15. DEFENCODING(( "CP437", /* IANA, JDK 1.1 */
  16. "IBM437", /* IANA */
  17. "437", /* IANA */
  18. "csPC8CodePage437", /* IANA */
  19. ),
  20. cp437,
  21. { cp437_mbtowc, NULL }, { cp437_wctomb, NULL })
  22. DEFENCODING(( "CP737", /* JDK 1.1 */
  23. ),
  24. cp737,
  25. { cp737_mbtowc, NULL }, { cp737_wctomb, NULL })
  26. DEFENCODING(( "CP775", /* IANA, JDK 1.1 */
  27. "IBM775", /* IANA */
  28. "csPC775Baltic", /* IANA */
  29. ),
  30. cp775,
  31. { cp775_mbtowc, NULL }, { cp775_wctomb, NULL })
  32. DEFENCODING(( "CP852", /* IANA, JDK 1.1 */
  33. "IBM852", /* IANA */
  34. "852", /* IANA */
  35. "csPCp852", /* IANA */
  36. ),
  37. cp852,
  38. { cp852_mbtowc, NULL }, { cp852_wctomb, NULL })
  39. DEFENCODING(( "CP853",
  40. ),
  41. cp853,
  42. { cp853_mbtowc, NULL }, { cp853_wctomb, NULL })
  43. DEFENCODING(( "CP855", /* IANA, JDK 1.1 */
  44. "IBM855", /* IANA */
  45. "855", /* IANA */
  46. "csIBM855", /* IANA */
  47. ),
  48. cp855,
  49. { cp855_mbtowc, NULL }, { cp855_wctomb, NULL })
  50. DEFENCODING(( "CP857", /* IANA, JDK 1.1 */
  51. "IBM857", /* IANA */
  52. "857", /* IANA */
  53. "csIBM857", /* IANA */
  54. ),
  55. cp857,
  56. { cp857_mbtowc, NULL }, { cp857_wctomb, NULL })
  57. DEFENCODING(( "CP858", /* JDK 1.1.7 */
  58. ),
  59. cp858,
  60. { cp858_mbtowc, NULL }, { cp858_wctomb, NULL })
  61. DEFENCODING(( "CP860", /* IANA, JDK 1.1 */
  62. "IBM860", /* IANA */
  63. "860", /* IANA */
  64. "csIBM860", /* IANA */
  65. ),
  66. cp860,
  67. { cp860_mbtowc, NULL }, { cp860_wctomb, NULL })
  68. DEFENCODING(( "CP861", /* IANA, JDK 1.1 */
  69. "IBM861", /* IANA */
  70. "861", /* IANA */
  71. "CP-IS", /* IANA */
  72. "csIBM861", /* IANA */
  73. ),
  74. cp861,
  75. { cp861_mbtowc, NULL }, { cp861_wctomb, NULL })
  76. DEFENCODING(( "CP863", /* IANA, JDK 1.1 */
  77. "IBM863", /* IANA */
  78. "863", /* IANA */
  79. "csIBM863", /* IANA */
  80. ),
  81. cp863,
  82. { cp863_mbtowc, NULL }, { cp863_wctomb, NULL })
  83. DEFENCODING(( "CP864", /* IANA, JDK 1.1 */
  84. "IBM864", /* IANA */
  85. "csIBM864", /* IANA */
  86. ),
  87. cp864,
  88. { cp864_mbtowc, NULL }, { cp864_wctomb, NULL })
  89. DEFENCODING(( "CP865", /* IANA, JDK 1.1 */
  90. "IBM865", /* IANA */
  91. "865", /* IANA */
  92. "csIBM865", /* IANA */
  93. ),
  94. cp865,
  95. { cp865_mbtowc, NULL }, { cp865_wctomb, NULL })
  96. DEFENCODING(( "CP869", /* IANA, JDK 1.1 */
  97. "IBM869", /* IANA */
  98. "869", /* IANA */
  99. "CP-GR", /* IANA */
  100. "csIBM869", /* IANA */
  101. ),
  102. cp869,
  103. { cp869_mbtowc, NULL }, { cp869_wctomb, NULL })
  104. DEFENCODING(( "CP1125", /* ICU */
  105. ),
  106. cp1125,
  107. { cp1125_mbtowc, NULL }, { cp1125_wctomb, NULL })