worked on config
This commit is contained in:
parent
a2868c8783
commit
37e5b5e555
9 changed files with 225 additions and 39 deletions
9
clib/test.h
Normal file
9
clib/test.h
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue