📄 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 + -