Lyanis SOUIDI
25884773d6
- La fonction wait() permet de mettre en pause le fonctionnement du programme.
13 lines
241 B
C
13 lines
241 B
C
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
#define DELTA 1000000L
|
|
|
|
void update_timer(unsigned long int start);
|
|
|
|
unsigned long int start_timer(unsigned long int start);
|
|
|
|
unsigned long int stop_timer(unsigned long int start);
|
|
|
|
void wait(int sec);
|
|
|
|
#endif |