/**************************************************************************** * dictionary.c * * Computer Science 50 * Problem Set 6 * * Implements a dictionary's functionality. ***************************************************************************/ #include #include "dictionary.h" /* * Returns true if word is in dictionary else false. */ bool check(const char *word) { // TODO return false; } /* * Loads dictionary into memory. Returns true if successful else false. */ bool load(const char *dictionary) { // TODO return false; } /* * Returns number of words in dictionary if loaded else 0 if not yet loaded. */ unsigned int size(void) { // TODO return 0; } /* * Unloads dictionary from memory. Returns true if successful else false. */ bool unload(void) { // TODO return false; }