encodings_extra.def 2.1 KB

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