encodings_dos.def 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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, write to the Free Software Foundation, Inc., 51 Franklin Street,
  14. Fifth Floor, Boston, MA 02110-1301, USA. */
  15. /* Encodings used by system dependent locales on MSDOS. */
  16. DEFENCODING(( "CP437", /* IANA, JDK 1.1 */
  17. "IBM437", /* IANA */
  18. "437", /* IANA */
  19. "csPC8CodePage437", /* IANA */
  20. ),
  21. cp437,
  22. { cp437_mbtowc, NULL }, { cp437_wctomb, NULL })
  23. DEFENCODING(( "CP737", /* JDK 1.1 */
  24. ),
  25. cp737,
  26. { cp737_mbtowc, NULL }, { cp737_wctomb, NULL })
  27. DEFENCODING(( "CP775", /* IANA, JDK 1.1 */
  28. "IBM775", /* IANA */
  29. "csPC775Baltic", /* IANA */
  30. ),
  31. cp775,
  32. { cp775_mbtowc, NULL }, { cp775_wctomb, NULL })
  33. DEFENCODING(( "CP852", /* IANA, JDK 1.1 */
  34. "IBM852", /* IANA */
  35. "852", /* IANA */
  36. "csPCp852", /* IANA */
  37. ),
  38. cp852,
  39. { cp852_mbtowc, NULL }, { cp852_wctomb, NULL })
  40. DEFENCODING(( "CP853",
  41. ),
  42. cp853,
  43. { cp853_mbtowc, NULL }, { cp853_wctomb, NULL })
  44. DEFENCODING(( "CP855", /* IANA, JDK 1.1 */
  45. "IBM855", /* IANA */
  46. "855", /* IANA */
  47. "csIBM855", /* IANA */
  48. ),
  49. cp855,
  50. { cp855_mbtowc, NULL }, { cp855_wctomb, NULL })
  51. DEFENCODING(( "CP857", /* IANA, JDK 1.1 */
  52. "IBM857", /* IANA */
  53. "857", /* IANA */
  54. "csIBM857", /* IANA */
  55. ),
  56. cp857,
  57. { cp857_mbtowc, NULL }, { cp857_wctomb, NULL })
  58. DEFENCODING(( "CP858", /* JDK 1.1.7 */
  59. ),
  60. cp858,
  61. { cp858_mbtowc, NULL }, { cp858_wctomb, NULL })
  62. DEFENCODING(( "CP860", /* IANA, JDK 1.1 */
  63. "IBM860", /* IANA */
  64. "860", /* IANA */
  65. "csIBM860", /* IANA */
  66. ),
  67. cp860,
  68. { cp860_mbtowc, NULL }, { cp860_wctomb, NULL })
  69. DEFENCODING(( "CP861", /* IANA, JDK 1.1 */
  70. "IBM861", /* IANA */
  71. "861", /* IANA */
  72. "CP-IS", /* IANA */
  73. "csIBM861", /* IANA */
  74. ),
  75. cp861,
  76. { cp861_mbtowc, NULL }, { cp861_wctomb, NULL })
  77. DEFENCODING(( "CP863", /* IANA, JDK 1.1 */
  78. "IBM863", /* IANA */
  79. "863", /* IANA */
  80. "csIBM863", /* IANA */
  81. ),
  82. cp863,
  83. { cp863_mbtowc, NULL }, { cp863_wctomb, NULL })
  84. DEFENCODING(( "CP864", /* IANA, JDK 1.1 */
  85. "IBM864", /* IANA */
  86. "csIBM864", /* IANA */
  87. ),
  88. cp864,
  89. { cp864_mbtowc, NULL }, { cp864_wctomb, NULL })
  90. DEFENCODING(( "CP865", /* IANA, JDK 1.1 */
  91. "IBM865", /* IANA */
  92. "865", /* IANA */
  93. "csIBM865", /* IANA */
  94. ),
  95. cp865,
  96. { cp865_mbtowc, NULL }, { cp865_wctomb, NULL })
  97. DEFENCODING(( "CP869", /* IANA, JDK 1.1 */
  98. "IBM869", /* IANA */
  99. "869", /* IANA */
  100. "CP-GR", /* IANA */
  101. "csIBM869", /* IANA */
  102. ),
  103. cp869,
  104. { cp869_mbtowc, NULL }, { cp869_wctomb, NULL })
  105. DEFENCODING(( "CP1125", /* ICU */
  106. ),
  107. cp1125,
  108. { cp1125_mbtowc, NULL }, { cp1125_wctomb, NULL })