encodings_extra.def 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* Copyright (C) 2002, 2005, 2008 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. DEFENCODING(( "EUC-JISX0213",
  16. "EUC-JIS-2004", /* x0213.org */
  17. ),
  18. euc_jisx0213,
  19. { euc_jisx0213_mbtowc, euc_jisx0213_flushwc }, { euc_jisx0213_wctomb, euc_jisx0213_reset })
  20. DEFENCODING(( "SHIFT_JISX0213",
  21. "SHIFT_JIS-2004", /* x0213.org */
  22. ),
  23. shift_jisx0213,
  24. { shift_jisx0213_mbtowc, shift_jisx0213_flushwc }, { shift_jisx0213_wctomb, shift_jisx0213_reset })
  25. DEFENCODING(( "ISO-2022-JP-3",
  26. "ISO-2022-JP-2004", /* x0213.org */
  27. ),
  28. iso2022_jp3,
  29. { iso2022_jp3_mbtowc, iso2022_jp3_flushwc }, { iso2022_jp3_wctomb, iso2022_jp3_reset })
  30. DEFENCODING(( "BIG5-2003",
  31. ),
  32. big5_2003,
  33. { big5_2003_mbtowc, NULL }, { big5_2003_wctomb, NULL })
  34. DEFENCODING(( "TDS565",
  35. "ISO-IR-230",
  36. ),
  37. tds565,
  38. { tds565_mbtowc, NULL }, { tds565_wctomb, NULL })
  39. DEFENCODING(( "ATARIST",
  40. "ATARI",
  41. ),
  42. atarist,
  43. { atarist_mbtowc, NULL }, { atarist_wctomb, NULL })
  44. DEFENCODING(( "RISCOS-LATIN1",
  45. ),
  46. riscos1,
  47. { riscos1_mbtowc, NULL }, { riscos1_wctomb, NULL })