Edit

thodg/libiconv/src/tis620.h

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2000-03-07 14:16:40
    Hash : aaebc789
    Message : Provide all encodings used by AIX locales. Simplify TIS-620.

  • src/tis620.h
  • /*
     * TIS620.2533-1
     */
    
    static int
    tis620_mbtowc (conv_t conv, wchar_t *pwc, const unsigned char *s, int n)
    {
      unsigned char c = *s;
      if (c < 0x80) {
        *pwc = (wchar_t) c;
        return 1;
      }
      else if (c >= 0xa1 && c <= 0xfb && !(c >= 0xdb && c <= 0xde)) {
        *pwc = (wchar_t) (c + 0x0d60);
        return 1;
      }
      return RET_ILSEQ;
    }
    
    static int
    tis620_wctomb (conv_t conv, unsigned char *r, wchar_t wc, int n)
    {
      if (wc < 0x0080) {
        *r = wc;
        return 1;
      }
      else if (wc >= 0x0e01 && wc <= 0x0e5b && !(wc >= 0x0e3b && wc <= 0x0e3e)) {
        *r = wc-0x0d60;
        return 1;
      }
      return RET_ILSEQ;
    }