Correction de bugs

This commit is contained in:
stiti
2023-12-10 18:14:02 +01:00
parent 64c5fc17a6
commit c1c53b53f2
12 changed files with 84 additions and 172 deletions

View File

@@ -2,12 +2,12 @@
#define JEU_H
void afficherScore(int score);
void lancer_jeu1(void);
void lancer_jeu2(void);
void lancer_jeu3(void);
void lancer_jeu4(void);
void lancer_jeu5(void);
#endif /*JEU_H*/

View File

@@ -1,12 +1,10 @@
#ifndef TIMER_H
#define TIMER_H
unsigned long int attendre(void);
unsigned long int creer_timer(void);
int afficher_minute(int min);
void initialiser_timer(int *min, int *sec);
int afficher_seconde(int sec);
int afficher_minute(int min);
void update_timer(int *min, int *sec);
void pause(void);
#endif /*TIMER_H*/
#endif /* TIMER_H */