grader.c: In function 'main':
grader.c:63:19: error: expected expression before 'int'
63 | my_assert(int(strlen(A[i]+1)) == N, "each line of the map must contain N zeroes or ones (before loop)");
| ^~~
grader.c:63:9: error: too few arguments to function 'my_assert'
63 | my_assert(int(strlen(A[i]+1)) == N, "each line of the map must contain N zeroes or ones (before loop)");
| ^~~~~~~~~
grader.c:18:6: note: declared here
18 | void my_assert (int a, const char* s) {
| ^~~~~~~~~
treasure.c: In function 'findTreasure':
treasure.c:12:13: warning: implicit declaration of function 'countTresure'; did you mean 'countTreasure'? [-Wimplicit-function-declaration]
12 | int cnt = countTresure(1, 1, N, c);
| ^~~~~~~~~~~~
| countTreasure
treasure.c:25:59: error: 'reportlis' undeclared (first use in this function); did you mean 'reportlist'?
25 | for (int i = 0; i < index; i++) Report(reportlist[i][0], reportlis[i][1]);
| ^~~~~~~~~
| reportlist
treasure.c:25:59: note: each undeclared identifier is reported only once for each function it appears in