summaryrefslogtreecommitdiff
path: root/dict.h
diff options
context:
space:
mode:
Diffstat (limited to 'dict.h')
-rw-r--r--dict.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/dict.h b/dict.h
index 5521094..eb4bc70 100644
--- a/dict.h
+++ b/dict.h
@@ -10,11 +10,11 @@
*
* WordExtract is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with WordExtract. If not, see <http://www.gnu.org/licenses/>.
+ * along with WordExtract. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DICTIONARY_H
@@ -27,8 +27,10 @@
#define NOT_IN_DICT 0
extern Word *dict;
+extern SortedWords dict_words;
Word *load_dict();
+void save_dict(FILE *, Word *);
int is_in_dict(char *, Word *);
#endif /*DICT_H*/