blob: dc51809977ec96c405ecbc26be3efe4c90dedecb (
plain)
1
2
3
4
5
6
7
8
9
|
#define IM_TABLE_LEN 4
#define IM_TABLE_ENTRY_LEN 8
//assumes this is sorted
char im_table[][3][IM_TABLE_ENTRY_LEN] = {
{"a ", "對", "100"},
{"aa ", "對", "100"},
{"b ", "八", "100"},
{"ba ", "不", "100"},
};
|