21 lines
309 B
C
Executable File
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;
|
|
|
|
}
|