📄 spell.h
字号:
/*****************************************************************************
* *
* -------------------------------- spell.h ------------------------------- *
* *
*****************************************************************************/
#ifndef SPELL_H
#define SPELL_H
/*****************************************************************************
* *
* Define the maximum size for words in the dictionary. *
* *
*****************************************************************************/
#define SPELL_SIZE 31
/*****************************************************************************
* *
* --------------------------- Public Interface --------------------------- *
* *
*****************************************************************************/
int spell(char (*dictionary)[SPELL_SIZE], int size, const char *word);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -