diff options
author | Haoran S. Diao (刁浩然) <0@hairydiode.xyz> | 2025-09-06 02:07:20 -0700 |
---|---|---|
committer | Haoran S. Diao (刁浩然) <0@hairydiode.xyz> | 2025-09-06 02:07:20 -0700 |
commit | 43e028136ef84c900f565946d5f694f9e4fc4eee (patch) | |
tree | 45b0991fc19d10ad5ba35c1d816ff92d4076d7aa /imtable.h | |
parent | 33c523fdef955c60fb81ccf3e30b8eace12933c9 (diff) |
Fully functional so far. Just need to clean up the code and actually import the
input method table
Diffstat (limited to 'imtable.h')
-rw-r--r-- | imtable.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -#define IM_TABLE_LEN 4 +#define IM_TABLE_LEN 5 #define IM_TABLE_ENTRY_LEN 8 //assumes this is sorted char im_table[][3][IM_TABLE_ENTRY_LEN] = { @@ -6,4 +6,5 @@ char im_table[][3][IM_TABLE_ENTRY_LEN] = { {"aa ", "對", "100"}, {"b ", "八", "100"}, {"ba ", "不", "100"}, + {"1", "一", "100"}, }; |