1
0
SAE11_2022/include/timer.h
Lyanis SOUIDI 25884773d6 Création d'une fonction wait()
- La fonction wait() permet de mettre en pause le fonctionnement du programme.
2022-12-08 09:54:54 +01:00

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