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
clib/test.h Normal file
View file

@ -0,0 +1,9 @@
#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);
}
}