24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* solution.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/05 04:02:35 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/05 09:05:08 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SOLUTION_H
|
|
# define SOLUTION_H
|
|
# include "parsing.h"
|
|
# include "printing.h"
|
|
|
|
void solve(t_map *map);
|
|
int itoc(int idx, int width);
|
|
int itor(int idx, int width);
|
|
char get_cell(t_map *map, int idx, int top, int left);
|
|
|
|
#endif
|