From 95670611b3636932b6e64c3e485a4e4bf40d8b07 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Sun, 2 Feb 2020 18:12:45 +0100 Subject: Norme again --- src/ft_get_map.c | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'src/ft_get_map.c') diff --git a/src/ft_get_map.c b/src/ft_get_map.c index adedf7c..00de520 100644 --- a/src/ft_get_map.c +++ b/src/ft_get_map.c @@ -1,10 +1,23 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_get_map.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2020/02/02 17:19:26 by rbousset #+# ## ## #+# */ +/* Updated: 2020/02/02 17:19:26 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + #include #include #include #include static void -ft_linecpy(char *line, char *mapl, size_t start) + ft_linecpy(char *line, char *mapl, size_t start) { size_t i; size_t j; @@ -25,7 +38,7 @@ ft_linecpy(char *line, char *mapl, size_t start) } static int8_t -ft_cat_mapl(char *line, size_t i, t_cub *clist) + ft_cat_mapl(char *line, size_t i, t_cub *clist) { if (!(clist->mapl = (char *)ft_nrealloc(clist->mapl, ((clist->map_w + 1) * i) * sizeof(char), @@ -36,7 +49,7 @@ ft_cat_mapl(char *line, size_t i, t_cub *clist) } int -ft_get_map_first_line(char *line, t_cub *clist) + ft_get_map_first_line(char *line, t_cub *clist) { if (!line[0]) { @@ -60,7 +73,7 @@ ft_get_map_first_line(char *line, t_cub *clist) } int -ft_get_map_core(int fd, t_cub *clist) + ft_get_map_core(int fd, t_cub *clist) { int ret; size_t i; -- cgit v1.2.3