cordle/include/words.h

12 lines
246 B
C
Raw Normal View History

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);
int is_valid_word(GameState* game, const char* word);
void to_upper(char* str);
#endif /* WORDS_H */