123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- #include "uhc_1.h"
- #include "uhc_2.h"
- static int
- cp949_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
- {
- unsigned char c = *s;
-
- if (c < 0x80)
- return ascii_mbtowc(conv,pwc,s,n);
-
- if (c >= 0x81 && c <= 0xa0)
- return uhc_1_mbtowc(conv,pwc,s,n);
- if (c >= 0xa1 && c < 0xff) {
- if (n < 2)
- return RET_TOOFEW(0);
- {
- unsigned char c2 = s[1];
- if (c2 < 0xa1)
-
- return uhc_2_mbtowc(conv,pwc,s,n);
- else if (c2 < 0xff && !(c == 0xa2 && c2 == 0xe8)) {
-
- unsigned char buf[2];
- int ret;
- buf[0] = c-0x80; buf[1] = c2-0x80;
- ret = ksc5601_mbtowc(conv,pwc,buf,2);
- if (ret != RET_ILSEQ)
- return ret;
-
- if (c == 0xc9) {
- *pwc = 0xe000 + (c2 - 0xa1);
- return 2;
- }
- if (c == 0xfe) {
- *pwc = 0xe05e + (c2 - 0xa1);
- return 2;
- }
- }
- }
- }
- return RET_ILSEQ;
- }
- static int
- cp949_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
- {
- unsigned char buf[2];
- int ret;
-
- ret = ascii_wctomb(conv,r,wc,n);
- if (ret != RET_ILUNI)
- return ret;
-
- if (wc != 0x327e) {
- ret = ksc5601_wctomb(conv,buf,wc,2);
- if (ret != RET_ILUNI) {
- if (ret != 2) abort();
- if (n < 2)
- return RET_TOOSMALL;
- r[0] = buf[0]+0x80;
- r[1] = buf[1]+0x80;
- return 2;
- }
- }
-
- if (wc >= 0xac00 && wc < 0xd7a4) {
- if (wc < 0xc8a5)
- return uhc_1_wctomb(conv,r,wc,n);
- else
- return uhc_2_wctomb(conv,r,wc,n);
- }
-
- if (wc >= 0xe000 && wc < 0xe0bc) {
- if (n < 2)
- return RET_TOOSMALL;
- if (wc < 0xe05e) {
- r[0] = 0xc9;
- r[1] = wc - 0xe000 + 0xa1;
- } else {
- r[0] = 0xfe;
- r[1] = wc - 0xe05e + 0xa1;
- }
- return 2;
- }
- return RET_ILUNI;
- }
|