gb12345.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C) 1999-2001, 2016 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 Lesser General Public
  7. * License as published by the Free Software Foundation; either version 2.1
  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. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  17. * If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. /*
  20. * GB/T 12345-1990
  21. */
  22. /*
  23. * GB/T 12345-1990 is a traditional chinese counterpart of GB 2312-1986.
  24. * According to the unicode.org tables:
  25. * 2146 characters have been changed to their traditional counterpart,
  26. * 103 characters have been added, no characters have been removed.
  27. * Therefore we use an auxiliary table, which contains only the changes.
  28. */
  29. #include "gb12345ext.h"
  30. static int
  31. gb12345_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, size_t n)
  32. {
  33. int ret;
  34. /* The gb12345ext table overrides some entries in the gb2312 table. */
  35. /* Try the GB12345 extensions -> Unicode table. */
  36. ret = gb12345ext_mbtowc(conv,pwc,s,n);
  37. if (ret != RET_ILSEQ)
  38. return ret;
  39. /* Try the GB2312 -> Unicode table. */
  40. ret = gb2312_mbtowc(conv,pwc,s,n);
  41. return ret;
  42. }
  43. static int
  44. gb12345_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n)
  45. {
  46. int ret;
  47. /* The gb12345ext table overrides some entries in the gb2312 table. */
  48. /* Try the Unicode -> GB12345 extensions table. */
  49. ret = gb12345ext_wctomb(conv,r,wc,n);
  50. if (ret != RET_ILUNI)
  51. return ret;
  52. /* Try the Unicode -> GB2312 table, and check that the resulting GB2312
  53. byte sequence is not overridden by the GB12345 extensions table. */
  54. ret = gb2312_wctomb(conv,r,wc,n);
  55. if (ret == 2 && gb12345ext_mbtowc(conv,&wc,r,2) == 2)
  56. return RET_ILUNI;
  57. else
  58. return ret;
  59. }