12 lines
246 B
C
12 lines
246 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(GameState* game, const char* word);
|
|
void to_upper(char* str);
|
|
|
|
#endif /* WORDS_H */
|