SAE11_2023/include/timer.h

11 lines
217 B
C
Raw Permalink Normal View History

#ifndef TIMER_H
#define TIMER_H
2023-12-10 18:14:02 +01:00
void initialiser_timer(int *min, int *sec);
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-10 18:14:02 +01:00
#endif /* TIMER_H */