#ifndef DICO_H_INCLUDED #define DICO_H_INCLUDED typedef struct stat_joueur stat_joueur; struct stat_joueur { char joueur1 [15]; int parties; int victoires; int defaites; }; int piocherMot(char *motPioche); int nombreAleatoire(int nombreMax); void recup_stat(stat_joueur *stat); void enregistre_stat(stat_joueur stat); #endif // DICO_H_INCLUDED