Skip to content

Commit

Permalink
remove: 移除过时的注释
Browse files Browse the repository at this point in the history
  • Loading branch information
wendal committed Jan 16, 2025
1 parent 3034673 commit 4adbb98
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions components/iconv/iconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@ typedef struct builtin_iconv_map_tag
static const builtin_iconv_map iconv_map[] =
{
{"ucs2", "gb2312", iconv_ucs2_to_gb2312},
/*+\NEW\liweiqiang\2013.11.26\完善gb2312<->ucs2(ucs2be)编码转换*/
{"ucs2be", "gb2312", iconv_ucs2be_to_gb2312},
{"gb2312", "ucs2", iconv_gb2312_to_ucs2},
{"gb2312", "ucs2be", iconv_gb2312_to_ucs2be},
/*-\NEW\liweiqiang\2013.11.26\完善gb2312<->ucs2(ucs2be)编码转换*/
/*+\NEW\liweiqiang\2013.7.19\增加utf8<->ucs2,ucs2be编码转换*/
{"utf8", "ucs2", iconv_utf8_to_ucs2},
{"utf8", "ucs2be", iconv_utf8_to_ucs2be},
{"ucs2", "utf8", iconv_ucs2_to_utf8},
{"ucs2be", "utf8", iconv_ucs2be_to_utf8},
/*-\NEW\liweiqiang\2013.7.19\增加utf8<->ucs2,ucs2be编码转换*/
};

iconv_t iconv_open (const char * to_code, const char * from_code)
Expand Down

0 comments on commit 4adbb98

Please sign in to comment.