2 * Copyright © 2006 Carl Worth
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
19 #include "word-game.h"
27 character_compare (const void *_a,
43 dict_t dict, solution;
48 gettimeofday (&tv, NULL);
49 srand (tv.tv_sec ^ tv.tv_usec);
54 memcpy (rack, bag.tiles, 7);
56 qsort (rack, 7, 1, character_compare);
59 dict_add_words_from_file (&dict, "words.txt");
61 dict_init (&solution);
62 subanagram_expand (rack, &dict, &solution);
64 word_game_play (rack, &dict, &solution, 0);
66 dict_fini (&solution);