?? loaddict.c
字號:
/*# proc: load_phrase_dictionary - loads the contents of the given filename into# proc: a phrase dictionary (mfs structure).*/#include <stdio.h>#include <mfs.h>#define PHRASES 20000MFS *load_phrase_dictionary(filename)char *filename;{ MFS *phrases; phrases = readmfsfile(filename); if(phrases->num > PHRASES) fatalerr("digraph_encode_file", "phrase dictionary too long", "length must equal PHRASES"); return(phrases);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -