summaryrefslogtreecommitdiff
path: root/dict.h
diff options
context:
space:
mode:
Diffstat (limited to 'dict.h')
-rw-r--r--dict.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dict.h b/dict.h
index 506c045..500e7eb 100644
--- a/dict.h
+++ b/dict.h
@@ -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*/