aboutsummaryrefslogtreecommitdiff
path: root/src/maze_solver.h
blob: 8dac12c0c37b495a44a9a6b77f866433ff68e59d (plain)
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