worked on config

This commit is contained in:
JOLIMAITRE Matthieu 2022-09-25 00:22:41 +02:00
parent a2868c8783
commit 37e5b5e555
9 changed files with 225 additions and 39 deletions

9
test.h
View file

@ -1,9 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
void assert_eq_int(int left, int right) {
if (left != right) {
printf("assertion failed\n'%i' != '%i'\n", left, right);
exit(1);
}
}