summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-11-23 15:18:27 +0800
committerPeng Wu <alexepico@gmail.com>2011-11-23 15:18:27 +0800
commit0f7b939fd5f21689448881fda1c598162eda9b51 (patch)
tree56655c1f924ba8e58b4402706fe2dcaf48fb2c5f
parente04fdb591205c05b47eef83cb318c654b3f8f01d (diff)
downloadlibpinyin-0f7b939fd5f21689448881fda1c598162eda9b51.tar.gz
libpinyin-0f7b939fd5f21689448881fda1c598162eda9b51.tar.xz
libpinyin-0f7b939fd5f21689448881fda1c598162eda9b51.zip
update chewing_table.h
-rw-r--r--src/storage/chewing_table.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/storage/chewing_table.h b/src/storage/chewing_table.h
index cea4d6b..b068fb9 100644
--- a/src/storage/chewing_table.h
+++ b/src/storage/chewing_table.h
@@ -43,14 +43,16 @@ const chewing_symbol_item_t chewing_standard_symbols[] = {
{'w' , "ㄊ"},
{'x' , "ㄌ"},
{'y' , "ㄗ"},
-{'z' , "ㄈ"}
+{'z' , "ㄈ"},
+{'\0', NULL}
};
const chewing_tone_item_t chewing_standard_tones[] = {
{'3' , 3},
{'4' , 4},
{'6' , 2},
-{'7' , 5}
+{'7' , 5},
+{'\0', 0}
};
@@ -91,14 +93,16 @@ const chewing_symbol_item_t chewing_ginyieh_symbols[] = {
{'v' , "ㄏ"},
{'w' , "ㄆ"},
{'x' , "ㄈ"},
-{'y' , "ㄔ"}
+{'y' , "ㄔ"},
+{'\0', NULL}
};
const chewing_tone_item_t chewing_ginyieh_tones[] = {
{'1' , 5},
{'a' , 3},
{'q' , 2},
-{'z' , 4}
+{'z' , 4},
+{'\0', 0}
};
const chewing_symbol_item_t chewing_eten_symbols[] = {
@@ -138,14 +142,16 @@ const chewing_symbol_item_t chewing_eten_symbols[] = {
{'w' , "ㄝ"},
{'x' , "ㄨ"},
{'y' , "ㄡ"},
-{'z' , "ㄠ"}
+{'z' , "ㄠ"},
+{'\0', NULL}
};
const chewing_tone_item_t chewing_eten_tones[] = {
{'1' , 5},
{'2' , 2},
{'3' , 3},
-{'4' , 4}
+{'4' , 4},
+{'\0', 0}
};
const chewing_symbol_item_t chewing_ibm_symbols[] = {
@@ -185,14 +191,16 @@ const chewing_symbol_item_t chewing_ibm_symbols[] = {
{'w' , "ㄑ"},
{'x' , "ㄢ"},
{'y' , "ㄕ"},
-{'z' , "ㄡ"}
+{'z' , "ㄡ"},
+{'\0', NULL}
};
const chewing_tone_item_t chewing_ibm_tones[] = {
{',' , 3},
{'.' , 4},
{'/' , 5},
-{'m' , 2}
+{'m' , 2},
+{'\0', 0}
};
};