EUC-JP conversion routines

parent e42fe498
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3582,24 +3582,24 @@ CHARSET_INFO compiled_charsets[] = { ...@@ -3582,24 +3582,24 @@ CHARSET_INFO compiled_charsets[] = {
#ifdef HAVE_CHARSET_ujis #ifdef HAVE_CHARSET_ujis
{ {
12, /* number */ 12, /* number */
"ujis", /* name */ "ujis", /* name */
ctype_ujis, ctype_ujis,
to_lower_ujis, to_lower_ujis,
to_upper_ujis, to_upper_ujis,
sort_order_ujis, sort_order_ujis,
NULL, /* tab_to_uni */ NULL, /* tab_to_uni */
NULL, /* tab_from_uni */ NULL, /* tab_from_uni */
0, /* strxfrm_multiply */ 0, /* strxfrm_multiply */
NULL, /* strnncoll */ NULL, /* strnncoll */
NULL, /* strnxfrm */ NULL, /* strnxfrm */
NULL, /* like_range */ NULL, /* like_range */
3, /* mbmaxlen */ 3, /* mbmaxlen */
ismbchar_ujis, ismbchar_ujis,
ismbhead_ujis, ismbhead_ujis,
mbcharlen_ujis, mbcharlen_ujis,
NULL, /* mb_wc */ my_mb_wc_euc_jp, /* mb_wc */
NULL, /* wc_mb */ my_wc_mb_euc_jp, /* wc_mb */
my_caseup_str_mb, my_caseup_str_mb,
my_casedn_str_mb, my_casedn_str_mb,
my_caseup_mb, my_caseup_mb,
...@@ -3612,24 +3612,24 @@ CHARSET_INFO compiled_charsets[] = { ...@@ -3612,24 +3612,24 @@ CHARSET_INFO compiled_charsets[] = {
#ifdef HAVE_CHARSET_utf8 #ifdef HAVE_CHARSET_utf8
{ {
33, /* number */ 33, /* number */
"utf8", /* name */ "utf8", /* name */
ctype_utf8, /* ctype */ ctype_utf8, /* ctype */
to_lower_utf8, /* to_lower */ to_lower_utf8, /* to_lower */
to_upper_utf8, /* to_upper */ to_upper_utf8, /* to_upper */
to_upper_utf8, /* sort_order */ to_upper_utf8, /* sort_order */
NULL, /* tab_to_uni */ NULL, /* tab_to_uni */
NULL, /* tab_from_uni */ NULL, /* tab_from_uni */
1, /* strxfrm_multiply */ 1, /* strxfrm_multiply */
my_strnncoll_utf8, /* strnncoll */ my_strnncoll_utf8, /* strnncoll */
my_strnxfrm_utf8, /* strnxfrm */ my_strnxfrm_utf8, /* strnxfrm */
NULL, /* like_range */ NULL, /* like_range */
6, /* mbmaxlen */ 6, /* mbmaxlen */
my_ismbchar_utf8, /* ismbchar */ my_ismbchar_utf8, /* ismbchar */
my_ismbhead_utf8, /* ismbhead */ my_ismbhead_utf8, /* ismbhead */
my_mbcharlen_utf8, /* mbcharlen */ my_mbcharlen_utf8, /* mbcharlen */
my_utf8_uni, /* mb_wc */ my_utf8_uni, /* mb_wc */
my_uni_utf8, /* wc_mb */ my_uni_utf8, /* wc_mb */
my_caseup_str_utf8, my_caseup_str_utf8,
my_casedn_str_utf8, my_casedn_str_utf8,
my_caseup_utf8, my_caseup_utf8,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment