20 lines
1003 B
C
20 lines
1003 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* parsing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/05/16 14:54:09 by cchauvet #+# #+# */
|
|
/* Updated: 2023/05/16 14:54:10 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PARSING_H
|
|
# define PARSING_H
|
|
# include "map.h"
|
|
|
|
int map_parsing(const char *path, t_map *map);
|
|
|
|
#endif
|