option for multiple inputs
This commit is contained in:
parent
cbd6eb52b1
commit
a2868c8783
10 changed files with 78 additions and 44 deletions
9
test.h
Normal file
9
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