diff options
Diffstat (limited to 'dict.h')
-rw-r--r-- | dict.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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*/ |