Kill mega-sena.sh
[lcapit-junk-code.git] / games / hangman / dict.h
blob432a2180e95c2e08612583061b4dea6d14e5973f
1 #ifndef DICT_H
2 #define DICT_H
4 #define DICT_WORD_MAX 12
5 #define DICT_TIP_MAX 16
6 #define DICT_LIST_MAX 12
8 struct dict_line {
9 char word[DICT_WORD_MAX];
10 char tip[DICT_TIP_MAX];
13 struct dict_list {
14 struct dict_line dict_line[DICT_LIST_MAX];
15 int first;
16 int last;
19 void dictionary_menu(void);
20 void dict_pick_up_word(struct dict_line *line);
22 #endif /* DICT_H */