cordle/include/words.h

12 lines
252 B
C

/* words.h - Word list management */
#ifndef WORDS_H
#define WORDS_H
#include "game.h"
int load_words(GameState* game, const char* filename);
int is_valid_word(const GameState* game, const char* word);
void to_upper(char* str);
#endif /* WORDS_H */