Files
TD3_DEV51_vaisse_kara-mosr/src/functions.h
2025-10-08 16:11:15 +02:00

13 lines
319 B
C

#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#define LIFES 8
char choose_letter();
int word_size(const char *fullWord);
int letter_occurrence(char letter, const char *fullWord);
void position_letter(char letter, const char *fullWord, char *partialWord);
int has_won(const char *fullWord, const char *partialWord);
#endif