34 lines
390 B
C
34 lines
390 B
C
|
|
|
|
#include <stdlib.h>
|
|
#include <graph.h>
|
|
#include <stdio.h>
|
|
#include <maj_fenetre.h>
|
|
|
|
|
|
|
|
#define CYCLE 10000L
|
|
|
|
|
|
int main(void) {
|
|
|
|
|
|
|
|
suivant= Microsecondes()+CYCLE;
|
|
|
|
|
|
while (1!=0){
|
|
|
|
if (Microsecondes()>suivant){
|
|
|
|
|
|
|
|
/* une periode s'est écoulé */
|
|
/* prochaine date */
|
|
|
|
suivant= Microsecondes()+CYCLE;
|
|
}
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
} |