diff options
Diffstat (limited to 'dict.h')
-rw-r--r-- | dict.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,8 +16,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef DICT_H -#define DICT_H +#ifndef DICTIONARY_H +#define DICTIONARY_H #include "word.h" @@ -28,6 +28,6 @@ Word *dict; Word *load_dict(FILE *); -int is_in_dict(char *word, Word *dic_rec); +int is_in_dict(char *, Word *); #endif /*DICT_H*/ |