spell.h
来自「掌握如何用C来实现各种算法」· C头文件 代码 · 共 27 行
H
27 行
/*****************************************************************************
* *
* -------------------------------- 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 + =
减小字号Ctrl + -
显示快捷键?