12 lines
187 B
C
12 lines
187 B
C
|
#ifndef TIMER_H
|
||
|
#define TIMER_H
|
||
|
|
||
|
|
||
|
unsigned long int attendre(void);
|
||
|
unsigned long int creer_timer(void);
|
||
|
int afficher_minute(int min);
|
||
|
int afficher_seconde(int sec);
|
||
|
|
||
|
|
||
|
|
||
|
#endif /*TIMER_H*/
|