OSDN Git Service

* Fix: Compile errors will occur when compile options are changed.
[nkf/nkf.git] / nkf.c
diff --git a/nkf.c b/nkf.c
index cff6ff4..df6d4e5 100644 (file)
--- a/nkf.c
+++ b/nkf.c
 **        E-Mail: furukawa@tcp-ip.or.jp
 **    \e$B$^$G8fO"Mm$r$*4j$$$7$^$9!#\e(B
 ***********************************************************************/
-/* $Id: nkf.c,v 1.84 2005/11/26 20:46:24 naruse Exp $ */
+/* $Id: nkf.c,v 1.89 2006/01/11 16:49:09 naruse Exp $ */
 #define NKF_VERSION "2.0.5"
-#define NKF_RELEASE_DATE "2005-11-27"
+#define NKF_RELEASE_DATE "2006-01-12"
 #include "config.h"
 
 #define COPY_RIGHT \
-    "Copyright (C) 1987, FUJITSU LTD. (I.Ichikawa),2000 S. Kono, COW, 2002-2005 Kono, Furukawa, Naruse"
+    "Copyright (C) 1987, FUJITSU LTD. (I.Ichikawa),2000 S. Kono, COW, 2002-2006 Kono, Furukawa, Naruse"
 
 
 /*
 #define         X0201           2
 #define         ISO8859_1       8
 #define         NO_X0201        3
-#define         X0212           16
+#define         X0212       0x2844
+#define         X0213_1     0x2850
+#define         X0213_2     0x2850
 
 /* Input Assumption */
 
@@ -311,9 +313,26 @@ STATIC  void    set_iconv PROTO((int f, int (*iconv_func)(int c2,int c1,int c0))
 STATIC  int     s_iconv PROTO((int c2,int c1,int c0));
 STATIC  int     s2e_conv PROTO((int c2, int c1, int *p2, int *p1));
 STATIC  int     e_iconv PROTO((int c2,int c1,int c0));
+#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+/* Microsoft UCS Mapping Compatible
+ * 0: Shift_JIS, eucJP-ascii
+ * 1: eucJP-ms
+ * 2: CP932, CP51932
+ */
+#define EUCJPMS 1
+#define MS_CODEPAGE 2
+STATIC int ms_ucs_map_f = 0;
+#endif
 #ifdef UTF8_INPUT_ENABLE
+/* don't convert characters when the mapping is not defined in the standard */
 STATIC  int     strict_mapping_f = TRUE;
+/* disable NEC special, NEC-selected IBM extended and IBM extended characters */
 STATIC  int     disable_cp932ext_f = FALSE;
+/* ignore ZERO WIDTH NO-BREAK SPACE */
+STATIC  int     ignore_zwnbsp_f = TRUE;
+/* don't convert characters that can't secure round trip convertion */
+STATIC  int     unicode_round_trip_f = FALSE;
+STATIC  int     unicode_subchar = '?'; /* the regular substitution character */
 STATIC  void    encode_fallback_html PROTO((int c));
 STATIC  void    encode_fallback_xml PROTO((int c));
 STATIC  void    encode_fallback_java PROTO((int c));
@@ -328,7 +347,12 @@ STATIC  int        w_iconv_common PROTO((int c1,int c0,const unsigned short *const *pp,
 STATIC  int     ww16_conv PROTO((int c2, int c1, int c0));
 STATIC  int     w16e_conv PROTO((unsigned short val,int *p2,int *p1));
 #endif
+#if defined(UTF8_OUTPUT_ENABLE) && defined(UTF8_INPUT_ENABLE)
+STATIC  int     internal_unicode_f = FALSE;   /* Internal Unicode Processing */
+#endif
 #ifdef UTF8_OUTPUT_ENABLE
+STATIC  int     unicode_bom_f= 0;   /* Output Unicode BOM */
+STATIC  int     w_oconv16_LE = 0;   /* utf-16 little endian */
 STATIC  int     e2w_conv PROTO((int c2,int c1));
 STATIC  void    w_oconv PROTO((int c2,int c1));
 STATIC  void    w_oconv16 PROTO((int c2,int c1));
@@ -421,15 +445,6 @@ STATIC int             x0201_f = TRUE;         /* Assume JISX0201 kana */
 STATIC int             x0201_f = NO_X0201;     /* Assume NO JISX0201 */
 #endif
 STATIC int             iso2022jp_f = FALSE;    /* convert ISO-2022-JP */
-#if defined(UTF8_OUTPUT_ENABLE) && defined(UTF8_INPUT_ENABLE)
-STATIC int             internal_unicode_f = FALSE;   /* Internal Unicode Processing */
-#endif
-#ifdef UTF8_OUTPUT_ENABLE
-STATIC int             unicode_bom_f= 0;   /* Output Unicode BOM */
-STATIC int             w_oconv16_LE = 0;   /* utf-16 little endian */
-STATIC int             ms_ucs_map_f = FALSE;   /* Microsoft UCS Mapping Compatible */
-STATIC int             unicode_subchar = '?'; /* the regular substitution character */
-#endif
 
 #ifdef UNICODE_NORMALIZATION
 STATIC int nfc_f = FALSE;
@@ -503,6 +518,7 @@ STATIC int x0212_f = FALSE;
 STATIC int x0212_shift PROTO((int c));
 STATIC int x0212_unshift PROTO((int c));
 #endif
+STATIC int x0213_f = FALSE;
 
 STATIC unsigned char prefix_table[256];
 
@@ -1000,6 +1016,7 @@ struct {
     {"utf16-input", "W16"},
     {"disable-cp932ext", ""},
     {"strict-mapping", ""},
+    {"enable-round-trip",""},
 #endif
 #ifdef UNICODE_NORMALIZATION
     {"utf8mac-input", ""},
@@ -1088,7 +1105,7 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 2;
 #endif
                    }else if(strcmp(codeset, "EUCJP") == 0 ||
                             strcmp(codeset, "EUC-JP") == 0){
@@ -1101,7 +1118,7 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 2;
 #endif
                    }else if(strcmp(codeset, "EUC-JP-MS") == 0 ||
                             strcmp(codeset, "EUCJP-MS") == 0){
@@ -1112,7 +1129,7 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 1;
 #endif
                    }else if(strcmp(codeset, "EUC-JP-ASCII") == 0 ||
                             strcmp(codeset, "EUCJP-ASCII") == 0){
@@ -1123,7 +1140,23 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = FALSE;
+                    ms_ucs_map_f = 0;
+#endif
+                   }else if(strcmp(codeset, "SHIFT_JISX0213") == 0){
+                       input_f = SJIS_INPUT;
+                       x0213_f = TRUE;
+#ifdef SHIFTJIS_CP932
+                    cp51932_f = FALSE;
+                    cp932inv_f = FALSE;
+#endif
+                       if (x0201_f==NO_X0201) x0201_f=TRUE;
+                   }else if(strcmp(codeset, "EUC-JISX0213") == 0){
+                       input_f = JIS_INPUT;
+                       x0201_f = FALSE;
+                       x0213_f = TRUE;
+#ifdef SHIFTJIS_CP932
+                    cp51932_f = FALSE;
+                    cp932inv_f = FALSE;
 #endif
 #ifdef UTF8_INPUT_ENABLE
                    }else if(strcmp(codeset, "UTF-8") == 0 ||
@@ -1168,7 +1201,7 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 2;
 #endif
                    }else if(strcmp(codeset, "EUCJP") == 0 ||
                             strcmp(codeset, "EUC-JP") == 0){
@@ -1181,30 +1214,43 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 2;
 #endif
                    }else if(strcmp(codeset, "EUC-JP-MS") == 0 ||
                             strcmp(codeset, "EUCJP-MS") == 0){
                        output_conv = e_oconv;
                        x0201_f = FALSE;
+#ifdef X0212_ENABLE
                        x0212_f = TRUE;
+#endif
 #ifdef SHIFTJIS_CP932
                     cp51932_f = FALSE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 1;
 #endif
                    }else if(strcmp(codeset, "EUC-JP-ASCII") == 0 ||
                             strcmp(codeset, "EUCJP-ASCII") == 0){
                        output_conv = e_oconv;
                        x0201_f = FALSE;
+#ifdef X0212_ENABLE
                        x0212_f = TRUE;
+#endif
 #ifdef SHIFTJIS_CP932
                     cp51932_f = FALSE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = FALSE;
+                    ms_ucs_map_f = 0;
 #endif
+                   }else if(strcmp(codeset, "SHIFT_JISX0213") == 0){
+                       output_conv = s_oconv;
+                       x0213_f = TRUE;
+                   }else if(strcmp(codeset, "EUC-JISX0213") == 0){
+                       output_conv = e_oconv;
+#ifdef X0212_ENABLE
+                       x0212_f = TRUE;
+#endif
+                       x0213_f = TRUE;
 #ifdef UTF8_OUTPUT_ENABLE
                    }else if(strcmp(codeset, "UTF-8") == 0){
                        output_conv = w_oconv;
@@ -1272,7 +1318,7 @@ options(cp)
                     cp932inv_f = TRUE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 2;
 #endif
                     continue;
                 }
@@ -1282,7 +1328,7 @@ options(cp)
                     cp932inv_f = FALSE;
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
-                    ms_ucs_map_f = FALSE;
+                    ms_ucs_map_f = 0;
 #endif
                     continue;
                 }
@@ -1319,6 +1365,10 @@ options(cp)
                    disable_cp932ext_f = TRUE;
                     continue;
                 }
+               if (strcmp(long_option[i].name, "enable-round-trip") == 0){
+                   unicode_round_trip_f = TRUE;
+                   continue;
+               }
                 if (strcmp(long_option[i].name, "fb-skip") == 0){
                    encode_fallback = NULL;
                     continue;
@@ -1372,7 +1422,7 @@ options(cp)
 #endif
 #ifdef UTF8_OUTPUT_ENABLE
                 if (strcmp(long_option[i].name, "ms-ucs-map") == 0){
-                    ms_ucs_map_f = TRUE;
+                    ms_ucs_map_f = 1;
                     continue;
                 }
 #endif
@@ -1863,8 +1913,8 @@ void s_status(ptr, c)
 #endif /* SHIFTJIS_CP932 */
 #ifndef X0212_ENABLE
           status_disable(ptr);
-          break;
 #endif
+          break;
     }
 }
 
@@ -2208,6 +2258,14 @@ kanji_convert(f)
     module_connection();
     c2 = 0;
 
+    if(input_f == SJIS_INPUT
+#ifdef UTF8_INPUT_ENABLE
+       || input_f == UTF8_INPUT || input_f == UTF16BE_INPUT
+#endif
+      ){
+       is_8bit = TRUE;
+    }
+
 
     input_mode = ASCII;
     output_mode = ASCII;
@@ -2645,6 +2703,8 @@ push_hold_buf(c2)
     return ((hold_count >= HOLD_SIZE*2) ? EOF : hold_count);
 }
 
+const int shift_jisx0213_s1a3_table[5][2] ={ { 1, 8}, { 3, 4}, { 5,12}, {13,14}, {15, 0} };
+
 int s2e_conv(c2, c1, p2, p1)
      int c2, c1;
      int *p2, *p1;
@@ -2663,7 +2723,7 @@ int s2e_conv(c2, c1, p2, p1)
     }
 #endif /* SHIFTJIS_CP932 */
 #ifdef X0212_ENABLE
-    if (x0212_f && 0xfa <= c2 && c2 <= 0xfc){
+    if (!x0213_f && x0212_f && 0xfa <= c2 && c2 <= 0xfc){
         extern const unsigned short shiftjis_x0212[3][189];
         val = shiftjis_x0212[c2 - 0xfa][c1 - 0x40];
         if (val){
@@ -2681,12 +2741,21 @@ int s2e_conv(c2, c1, p2, p1)
     }
 #endif
     if(c2 >= 0x80){
-       c2 = c2 + c2 - ((c2 <= 0x9f) ? SJ0162 : SJ6394);
-       if (c1 < 0x9f)
-           c1 = c1 - ((c1 > DEL) ? SPACE : 0x1f);
+       if(x0213_f && c2 >= 0xF0){
+           if(c2 <= 0xF3 || (c2 == 0xF4 && c1 < 0x9F)){ /* k=1, 3<=k<=5, k=8, 12<=k<=15 */
+               c2 = 0x8F20 + shift_jisx0213_s1a3_table[c2 - 0xF0][0x9E < c1];
+           }else{ /* 78<=k<=94 */
+               c2 = 0x8F00 | (c2 * 2 - 0x17B);
+               if (0x9E < c1) c2++;
+           }
+       }else{
+           c2 = c2 + c2 - ((c2 <= 0x9F) ? SJ0162 : SJ6394);
+           if (0x9E < c1) c2++;
+       }
+       if (c1 < 0x9F)
+           c1 = c1 - ((c1 > DEL) ? SPACE : 0x1F);
        else {
-           c1 = c1 - 0x7e;
-           c2++;
+           c1 = c1 - 0x7E;
        }
     }
 
@@ -2788,6 +2857,13 @@ w_iconv(c2, c1, c0)
 {
     int ret = 0;
     
+    /* throw away ZERO WIDTH NO-BREAK SPACE (U+FEFF) */
+    if(ignore_zwnbsp_f){
+       ignore_zwnbsp_f = FALSE;
+       if(c2 == 0xef && c1 == 0xbb && c0 == 0xbf)
+           return 0;
+    }
+    
     if (c2 == 0) /* 0x00-0x7f */
        c1 &= 0x7F; /* 1byte */
     else if (c0 == 0){
@@ -2816,10 +2892,8 @@ w_iconv(c2, c1, c0)
                return 0;
        }else return 0;
     }
-    if (c2 == 0 || c2 == EOF);
-    else if (c2 == 0xef && c1 == 0xbb && c0 == 0xbf) {
-       return 0; /* throw BOM */
-#if defined(UTF8_OUTPUT_ENABLE) && defined(UTF8_INPUT_ENABLE)
+    if (c2 == 0 || c2 == EOF){
+#ifdef UTF8_OUTPUT_ENABLE
     } else if (internal_unicode_f && (output_conv == w_oconv || output_conv == w_oconv16)){
        unsigned short val = 0;
        if(c2 == 0){
@@ -2838,7 +2912,9 @@ w_iconv(c2, c1, c0)
     }
     return ret;
 }
+#endif
 
+#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
 void
 w16w_conv(val, p2, p1, p0)
      unsigned short val;
@@ -2858,7 +2934,9 @@ w16w_conv(val, p2, p1, p0)
         *p0 = 0x80 | (val        & 0x3f);
     }
 }
+#endif
 
+#ifdef UTF8_INPUT_ENABLE
 int
 ww16_conv(c2, c1, c0)
      int c2, c1, c0;
@@ -2918,19 +2996,25 @@ w16e_conv(val, p2, p1)
     }
     return ret;
 }
+#endif
 
+#ifdef UTF8_INPUT_ENABLE
 int
 w_iconv16(c2, c1, c0)
     int    c2, c1,c0;
 {
     int ret = 0;
 
-    if (c2==0376 && c1==0377){
-       utf16_mode = UTF16BE_INPUT;
-       return 0;    
-    } else if (c2==0377 && c1==0376){
-       utf16_mode = UTF16LE_INPUT;
-       return 0;    
+    /* throw away ZERO WIDTH NO-BREAK SPACE (U+FEFF) */
+    if(ignore_zwnbsp_f){
+       ignore_zwnbsp_f = FALSE;
+       if (c2==0376 && c1==0377){
+           utf16_mode = UTF16BE_INPUT;
+           return 0;
+       }else if(c2==0377 && c1==0376){
+           utf16_mode = UTF16LE_INPUT;
+           return 0;
+       }
     }
     if (c2 != EOF && utf16_mode == UTF16LE_INPUT) {
        int tmp;
@@ -2941,11 +3025,10 @@ w_iconv16(c2, c1, c0)
        return 0;
     }else if((c2>>3)==27){ /* surrogate pair */
        return 1;
-    }
-#if defined(UTF8_OUTPUT_ENABLE) && defined(UTF8_INPUT_ENABLE)
-    if (internal_unicode_f && (output_conv == w_oconv || output_conv == w_oconv16));
+#ifdef UTF8_OUTPUT_ENABLE
+    }else if (internal_unicode_f && (output_conv == w_oconv || output_conv == w_oconv16)){
 #endif
-    else ret = w16e_conv(((c2<<8)&0xff00) + c1, &c2, &c1);
+    }else ret = w16e_conv(((c2<<8)&0xff00) + c1, &c2, &c1);
     if (ret) return ret;
     (*oconv)(c2, c1);
     return 0;
@@ -2961,12 +3044,19 @@ unicode_to_jis_common(c2, c1, c0, p2, p1)
     int ret = 0;
 
     if(c2 < 0xe0){
-       if (ms_ucs_map_f && cp51932_f){
+       if (ms_ucs_map_f == 2){
            /* CP932/CP51932: U+00A6 (BROKEN BAR) -> not 0x8fa2c3, but 0x7c */
-           if(c2 == 0xC2 && c1 == 0xA6){
-               if (p2) *p2 = 0;
-               if (p1) *p1 = 0x7C;
-               return 0;
+           if(c2 == 0xC2){
+               switch(c1){
+               case 0xA5:
+                   if (p2) *p2 = 0;
+                   if (p1) *p1 = 0x5C;
+                   return 0;
+               case 0xA6:
+                   if (p2) *p2 = 0;
+                   if (p1) *p1 = 0x7C;
+                   return 0;
+               }
            }
        }else if(strict_mapping_f){
            switch(c2){
@@ -2986,7 +3076,11 @@ unicode_to_jis_common(c2, c1, c0, p2, p1)
            }
        }
        ret =  w_iconv_common(c2, c1, utf8_to_euc_2bytes, sizeof_utf8_to_euc_2bytes, p2, p1);
-       if(!ret && !ms_ucs_map_f && !x0212_f){
+       if(!ret && !ms_ucs_map_f
+#ifdef X0212_ENABLE
+          && !x0212_f
+#endif
+         ){
            if(*p2 == 0 && *p1 < 0x80){
                return 1;
            }else if(*p2 > 0xFF){
@@ -2995,10 +3089,37 @@ unicode_to_jis_common(c2, c1, c0, p2, p1)
                    s2e_conv(s2, s1, p2, p1);
                    if(*p2 == 0 && *p1 < 0x80)
                        return 1;
-               }
+               }else return 1;
             }
        }
     }else if(c0){
+       if(unicode_round_trip_f){
+           switch(c2){
+           case 0xE2:
+               switch(c1){
+               case 0x80:
+                   if(c0 == 0x95) return 1;
+                   break;
+               case 0x88:
+                   if(c0 == 0xA5) return 1;
+                   break;
+               }
+               break;
+           case 0xEF:
+               switch(c1){
+               case 0xBB:
+                   if(c0 == 0xBF) return 1;
+                   break;
+               case 0xBC:
+                   if(c0 == 0x8D) return 1;
+                   break;
+               case 0xBF:
+                   if(0xA0 <= c0 && c0 <= 0xA5) return 1;
+                   break;
+               }
+               break;
+           }
+       }
        if(!ms_ucs_map_f){
            /* eucJP-ascii */
            if(c2 == 0xE2 && c1 == 0x80 && c0 == 0xBE){
@@ -3012,7 +3133,7 @@ unicode_to_jis_common(c2, c1, c0, p2, p1)
            }
        }
        if(!strict_mapping_f);
-       else if(ms_ucs_map_f && cp51932_f){
+       else if(ms_ucs_map_f == 2){
            /* Microsoft Code Page */
            switch(c2){
            case 0xE2:
@@ -3087,9 +3208,6 @@ w_iconv_common(c1, c0, pp, psize, p2, p1)
     return 0;
 }
 
-#endif
-
-#ifdef UTF8_OUTPUT_ENABLE
 void
 nkf_each_char_to_hex(f, c)
     void (*f)PROTO((int c2,int c1));
@@ -3202,7 +3320,9 @@ encode_fallback_subchar(c)
     }
     return;
 }
+#endif
 
+#ifdef UTF8_OUTPUT_ENABLE
 int
 e2w_conv(c2, c1)
     int    c2, c1;
@@ -3280,9 +3400,12 @@ w_oconv(c2, c1)
         (*o_putc)(c1 | 0x080);
     } else {
         output_mode = UTF8;
+#ifdef UTF8_INPUT_ENABLE
        if (internal_unicode_f && (iconv == w_iconv || iconv == w_iconv16))
            val = ((c2<<8)&0xff00) + c1;
-       else val = e2w_conv(c2, c1);
+       else
+#endif
+           val = e2w_conv(c2, c1);
         if (val){
             w16w_conv(val, &c2, &c1, &c0);
             (*o_putc)(c2);
@@ -3315,8 +3438,11 @@ w_oconv16(c2, c1)
        unicode_bom_f=1;
     }
 
+#ifdef UTF8_INPUT_ENABLE
     if (internal_unicode_f && (iconv == w_iconv || iconv == w_iconv16)){
-    } else if (c2 == ISO8859_1) {
+    } else
+#endif
+    if (c2 == ISO8859_1) {
         c2 = 0;
         c1 |= 0x80;
 #ifdef NUMCHAR_OPTION
@@ -3439,32 +3565,43 @@ int
 e2s_conv(c2, c1, p2, p1)
      int c2, c1, *p2, *p1;
 {
-#ifdef X0212_ENABLE
-    int val = 0;
-    const unsigned short *ptr;
     int ndx;
-    extern const unsigned short *const x0212_shiftjis[];
     if ((c2 & 0xff00) == 0x8f00){
-        ndx = c2 & 0x7f;
-        if (0x21 <= ndx && ndx <= 0x7e){
-            ptr = x0212_shiftjis[ndx - 0x21];
-            if (ptr){
-                val = ptr[(c1 & 0x7f) - 0x21];
-            }
-            if (val){
-                c2 = val >> 8;
-                c1 = val & 0xff;
-                if (p2) *p2 = c2;
-                if (p1) *p1 = c1;
-                return 0;
-            }
-        }
-        c2 = x0212_shift(c2);
-    }
+       ndx = c2 & 0xff;
+       if (x0213_f){
+           if((0x21 <= ndx && ndx <= 0x2F)){
+               if (p2) *p2 = ((ndx - 1) >> 1) + 0xec - ndx / 8 * 3;
+               if (p1) *p1 = c1 + ((ndx & 1) ? ((c1 < 0x60) ? 0x1f : 0x20) : 0x7e);
+               return 0;
+           }else if(0x6E <= ndx && ndx <= 0x7E){
+               if (p2) *p2 = ((ndx - 1) >> 1) + 0xbe;
+               if (p1) *p1 = c1 + ((ndx & 1) ? ((c1 < 0x60) ? 0x1f : 0x20) : 0x7e);
+               return 0;
+           }
+           return 1;
+       }
+#ifdef X0212_ENABLE
+       else if(0x21 <= ndx && ndx <= 0x7e){
+           int val = 0;
+           const unsigned short *ptr;
+           extern const unsigned short *const x0212_shiftjis[];
+           ndx = c2 & 0x7f;
+           ptr = x0212_shiftjis[ndx - 0x21];
+           if (ptr){
+               val = ptr[(c1 & 0x7f) - 0x21];
+           }
+           if (val){
+               c2 = val >> 8;
+               c1 = val & 0xff;
+               if (p2) *p2 = c2;
+               if (p1) *p1 = c1;
+               return 0;
+           }
+           c2 = x0212_shift(c2);
+       }
 #endif /* X0212_ENABLE */
-    if ((c2 & 0xff00) == 0x8f00){
-        return 1;
     }
+    if(0x7F < c2) return 1;
     if (p2) *p2 = ((c2 - 1) >> 1) + ((c2 <= 0x5e) ? 0x71 : 0xb1);
     if (p1) *p1 = c1 + ((c2 & 1) ? ((c1 < 0x60) ? 0x1f : 0x20) : 0x7e);
     return 0;
@@ -3557,13 +3694,19 @@ j_oconv(c2, c1)
         (*o_putc)(EOF);
 #ifdef X0212_ENABLE
     } else if ((c2 & 0xff00) >> 8 == 0x8f){
-        if (output_mode!=X0212) {
-            output_mode = X0212;
-            (*o_putc)(ESC);
-            (*o_putc)('$');
-            (*o_putc)('(');
-            (*o_putc)('D');
+       if(x0213_f){
+           if(output_mode!=X0213_2){
+               output_mode = X0213_2;
+           }
+       }else{
+           if(output_mode!=X0212){
+               output_mode = X0212;
+           }
         }
+       (*o_putc)(ESC);
+       (*o_putc)('$');
+       (*o_putc)('(');
+       (*o_putc)(output_mode & 0x7F);
         (*o_putc)(c2 & 0x7f);
         (*o_putc)(c1);
 #endif
@@ -3590,7 +3733,15 @@ j_oconv(c2, c1)
         }
         (*o_putc)(c1);
     } else {
-        if (output_mode != X0208) {
+       if(x0213_f){
+           if (output_mode!=X0213_1) {
+               output_mode = X0213_1;
+               (*o_putc)(ESC);
+               (*o_putc)('$');
+               (*o_putc)('(');
+               (*o_putc)(output_mode & 0x7F);
+           }
+       }else if (output_mode != X0208) {
             output_mode = X0208;
             (*o_putc)(ESC);
             (*o_putc)('$');
@@ -4068,7 +4219,7 @@ const unsigned char *mime_pattern[] = {
     (const unsigned char *)"\075?ISO-8859-1?B?",
     (const unsigned char *)"\075?ISO-2022-JP?B?",
     (const unsigned char *)"\075?ISO-2022-JP?Q?",
-#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+#if defined(UTF8_INPUT_ENABLE)
     (const unsigned char *)"\075?UTF-8?B?",
     (const unsigned char *)"\075?UTF-8?Q?",
 #endif
@@ -4080,7 +4231,7 @@ const unsigned char *mime_pattern[] = {
 /* \e$B3:Ev$9$k%3!<%I$NM%@hEY$r>e$2$k$?$a$NL\0u\e(B */
 int (*mime_priority_func[])PROTO((int c2, int c1, int c0)) = {
     e_iconv, s_iconv, 0, 0, 0, 0,
-#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+#if defined(UTF8_INPUT_ENABLE)
     w_iconv, w_iconv,
 #endif
     0,
@@ -4088,7 +4239,7 @@ int (*mime_priority_func[])PROTO((int c2, int c1, int c0)) = {
 
 const int mime_encode[] = {
     JAPANESE_EUC, SHIFT_JIS,ISO8859_1, ISO8859_1, X0208, X0201,
-#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+#if defined(UTF8_INPUT_ENABLE)
     UTF8, UTF8,
 #endif
     ASCII,
@@ -4097,7 +4248,7 @@ const int mime_encode[] = {
 
 const int mime_encode_method[] = {
     'B', 'B','Q', 'B', 'B', 'Q',
-#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+#if defined(UTF8_INPUT_ENABLE)
     'B', 'Q',
 #endif
     'Q',
@@ -5232,15 +5383,23 @@ reinit()
      x0201_f = NO_X0201;
 #endif
     iso2022jp_f = FALSE;
+#if defined(UTF8_INPUT_ENABLE) || defined(UTF8_OUTPUT_ENABLE)
+    ms_ucs_map_f = 0;
+#endif
 #if defined(UTF8_OUTPUT_ENABLE) && defined(UTF8_INPUT_ENABLE)
     internal_unicode_f = FALSE;
 #endif
+#ifdef UTF8_INPUT_ENABLE
+    strict_mapping_f = TRUE;
+    disable_cp932ext_f = FALSE;
+    ignore_zwnbsp_f = TRUE;
+    unicode_round_trip_f = FALSE;
+    encode_fallback = NULL;
+    unicode_subchar  = '?';
+#endif
 #ifdef UTF8_OUTPUT_ENABLE
     unicode_bom_f = 0;
     w_oconv16_LE = 0;
-    ms_ucs_map_f = FALSE;
-    encode_fallback = NULL;
-    unicode_subchar  = '?';
 #endif
 #ifdef UNICODE_NORMALIZATION
     nfc_f = FALSE;
@@ -5266,6 +5425,7 @@ reinit()
 #endif
 #ifdef X0212_ENABLE
     x0212_f = FALSE;
+    x0213_f = FALSE;
 #endif
     {
         int i;
@@ -5392,10 +5552,10 @@ usage()
     fprintf(stderr,"I        Convert non ISO-2022-JP charactor to GETA\n");
     fprintf(stderr,"-L[uwm]  line mode u:LF w:CRLF m:CR (DEFAULT noconversion)\n");
     fprintf(stderr,"long name options\n");
+    fprintf(stderr," --ic=<input codeset> --oc=<output codeset>         set the input or output codeset\n");
     fprintf(stderr," --fj,--unix,--mac,--windows                        convert for the system\n");
     fprintf(stderr," --jis,--euc,--sjis,--utf8,--utf16,--mime,--base64  convert for the code\n");
     fprintf(stderr," --hiragana, --katakana    Hiragana/Katakana Conversion\n");
-    fprintf(stderr," --x0212                   Convert JISX0212\n");
     fprintf(stderr," --prefix=    Insert escape before troublesome characters of Shift_JIS\n");
 #ifdef INPUT_OPTION
     fprintf(stderr," --cap-input, --url-input  Convert hex after ':' or '%%'\n");
@@ -5403,9 +5563,6 @@ usage()
 #ifdef NUMCHAR_OPTION
     fprintf(stderr," --numchar-input   Convert Unicode Character Reference\n");
 #endif
-#ifdef UNICODE_NORMALIZATION
-    fprintf(stderr," --utf8mac-input   UTF-8-MAC input\n");
-#endif
 #ifdef UTF8_INPUT_ENABLE
     fprintf(stderr," --fb-{skip, html, xml, perl, java, subchar}\n");
     fprintf(stderr,"                   set the way nkf handles unassigned characters\n");