This commit is contained in:
Peter Petrek 2022-01-19 17:41:10 +01:00
parent 2237e25347
commit b8fb261544
5 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
CC = gcc
CFLAGS = -g -Wall -Werror
CFLAGS = -g -Wall -Werror -std=c99
all: program
@ -13,4 +13,4 @@ main.o: main.c
$(CC) $(CFLAGS) -c main.c -o main.o
clean:
rm -rf program *.o *.exe *.exe.stackdump
rm -rf program *.o *.exe *.exe.stackdump

BIN
sk1a/main.o Normal file

Binary file not shown.

View File

@ -97,7 +97,7 @@ int solve_maze(char* maze, int size) {
} else if (posX == size - 1 && posY == size - 1) {
maze2d[0][0] = '*';
//cleanup data bits
//cleanuup data bits
for (int y = 0; y < size; y++) {
for (int x = 0; x < size; x++) {
if (maze2d[y][x] == CHECKED_BIT || maze2d[y][x] == 0) {
@ -124,7 +124,7 @@ int solve_maze(char* maze, int size) {
maze[y * size + x] = maze2d[y][x];
}
}
printf("\nend");
printf("\n\nend");
return 1;
}
}

BIN
sk1a/maze.o Normal file

Binary file not shown.

BIN
sk1a/program Executable file

Binary file not shown.