cordle/include/words.h
2025-10-06 14:58:25 +01:00

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 */