/*  Problem Set 10: Scrabble Word Game
 */

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
#define WORDLIST_FILENAME "words.txt"
#define MAX_WORDS 100000 //max number of words in the list
#define MAX_LENGTH    15           //max number of characters in a word
#define HAND_SIZE  7

char VOWELS[]="aeiou";
char CONSONANTS[]="bcdfghjklmnpqrstvwxyz";
int SCRABBLE_LETTER_VALUES[]={1,3,3,2,1,4,2,4,1,8,5,1,3,1,1,3,10,1,1,1,1,4,4,8,4,10};
/* values for letter a, b, c, d, e, ..., etc. */


int main( )
{
 //   char word_list[MAX_WORDS][MAX_LENGTH+1];
 //   if(load_words(WORDLIST_FILENAME, word_list))
//	play_game(word_list);
}
