1 2 3 4 5 6 7 8
#ifndef MAZE_SOLVER_H #define MAZE_SOLVER_H #include "maze.h" int solve_maze(struct maze *maze, struct point point, struct point *path); #endif