test/test/test.c
Matthieu Dubuget ea1e853d0b Commit initial
2019-04-13 13:47:57 +02:00

21 lines
309 B
C
Executable File

#include <stdio.h>
#include <stdlib.h>
#include "mytst.h"
int main(){
int before, after;
before = tst_init_ok();
printf("Avant: %d\n", before);
fflush(stdout);
tst_init();
after = tst_init_ok();
printf("Après: %d\n", after);
fflush(stdout);
return EXIT_SUCCESS;
}