2025-10-06 13:58:25 +00:00
|
|
|
/* words.h - Word list management */
|
|
|
|
|
#ifndef WORDS_H
|
|
|
|
|
#define WORDS_H
|
|
|
|
|
|
|
|
|
|
#include "game.h"
|
|
|
|
|
|
|
|
|
|
int load_words(GameState* game, const char* filename);
|
2026-01-26 20:55:11 +00:00
|
|
|
int is_valid_word(const GameState* game, const char* word);
|
2025-10-06 13:58:25 +00:00
|
|
|
void to_upper(char* str);
|
|
|
|
|
|
|
|
|
|
#endif /* WORDS_H */
|