2023-12-09 21:43:13 +01:00
|
|
|
#ifndef TIMER_H
|
|
|
|
#define TIMER_H
|
|
|
|
|
2023-12-10 18:14:02 +01:00
|
|
|
void initialiser_timer(int *min, int *sec);
|
2023-12-09 21:43:13 +01:00
|
|
|
int afficher_seconde(int sec);
|
2023-12-10 18:14:02 +01:00
|
|
|
int afficher_minute(int min);
|
|
|
|
void update_timer(int *min, int *sec);
|
|
|
|
void pause(void);
|
2023-12-09 21:43:13 +01:00
|
|
|
|
2023-12-10 18:14:02 +01:00
|
|
|
#endif /* TIMER_H */
|