gb12345.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (C) 1999-2001 Free Software Foundation, Inc.
  3. * This file is part of the GNU LIBICONV Library.
  4. *
  5. * The GNU LIBICONV Library is free software; you can redistribute it
  6. * and/or modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * The GNU LIBICONV Library is distributed in the hope that it will be
  11. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public
  16. * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  17. * If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
  18. * Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. /*
  21. * GB/T 12345-1990
  22. */
  23. /*
  24. * GB/T 12345-1990 is a traditional chinese counterpart of GB 2312-1986.
  25. * According to the unicode.org tables:
  26. * 2146 characters have been changed to their traditional counterpart,
  27. * 103 characters have been added, no characters have been removed.
  28. * Therefore we use an auxiliary table, which contains only the changes.
  29. */
  30. #include "gb12345ext.h"
  31. static int
  32. gb12345_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
  33. {
  34. int ret;
  35. /* The gb12345ext table overrides some entries in the gb2312 table. */
  36. /* Try the GB12345 extensions -> Unicode table. */
  37. ret = gb12345ext_mbtowc(conv,pwc,s,n);
  38. if (ret != RET_ILSEQ)
  39. return ret;
  40. /* Try the GB2312 -> Unicode table. */
  41. ret = gb2312_mbtowc(conv,pwc,s,n);
  42. return ret;
  43. }
  44. static int
  45. gb12345_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
  46. {
  47. int ret;
  48. /* The gb12345ext table overrides some entries in the gb2312 table. */
  49. /* Try the Unicode -> GB12345 extensions table. */
  50. ret = gb12345ext_wctomb(conv,r,wc,n);
  51. if (ret != RET_ILUNI)
  52. return ret;
  53. /* Try the Unicode -> GB2312 table, and check that the resulting GB2312
  54. byte sequence is not overridden by the GB12345 extensions table. */
  55. ret = gb2312_wctomb(conv,r,wc,n);
  56. if (ret == 2 && gb12345ext_mbtowc(conv,&wc,r,2) == 2)
  57. return RET_ILUNI;
  58. else
  59. return ret;
  60. }