diff --git a/f_handle_errors.c b/f_handle_errors.c index 690f733..47f2a8e 100644 --- a/f_handle_errors.c +++ b/f_handle_errors.c @@ -6,7 +6,7 @@ /* By: vmanzoni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/03/01 13:29:05 by vmanzoni #+# #+# */ -/* Updated: 2019/05/29 13:48:44 by vmanzoni ### ########.fr */ +/* Updated: 2019/05/29 13:56:55 by vmanzoni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -66,7 +66,6 @@ void check_file_errors(char *file, int *dope) print_error_extended(1, dope); else if (file[i] == '\n') line_nbr++; - // le if suivant verifie quoi if (file[i] == '\n' && line_nbr % 5 == 0 && file[i-1] != '\n') print_error("error\n"); if (file[i] == '\n' && file[i+1] != '\0' && \ diff --git a/f_search_map.c b/f_search_map.c index 89df20c..3a2efff 100644 --- a/f_search_map.c +++ b/f_search_map.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* search_map.c :+: :+: :+: */ +/* f_search_map.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/04/27 20:47:22 by hulamy #+# #+# */ -/* Updated: 2019/05/28 18:19:15 by hulamy ### ########.fr */ +/* Updated: 2019/05/29 13:37:51 by vmanzoni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -135,7 +135,7 @@ int fill_map(unsigned int *map, t_fillist *list, int size) } /* -** function that send to "fill_map" a map of a certain size +** Function that send to "fill_map" a map of a certain size ** and increment its size untill it's solved */