all debug comments deleted for norm

This commit is contained in:
Manzovince
2019-05-29 13:57:37 +02:00
parent fb1a41e94f
commit 0236573b6d
2 changed files with 4 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */ /* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/01 13:29:05 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); print_error_extended(1, dope);
else if (file[i] == '\n') else if (file[i] == '\n')
line_nbr++; line_nbr++;
// le if suivant verifie quoi
if (file[i] == '\n' && line_nbr % 5 == 0 && file[i-1] != '\n') if (file[i] == '\n' && line_nbr % 5 == 0 && file[i-1] != '\n')
print_error("error\n"); print_error("error\n");
if (file[i] == '\n' && file[i+1] != '\0' && \ if (file[i] == '\n' && file[i+1] != '\0' && \

View File

@@ -1,12 +1,12 @@
/* ************************************************************************** */ /* ************************************************************************** */
/* */ /* */
/* ::: :::::::: */ /* ::: :::::::: */
/* search_map.c :+: :+: :+: */ /* f_search_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */ /* +:+ +:+ +:+ */
/* By: hulamy <hulamy@student.42.fr> +#+ +:+ +#+ */ /* By: hulamy <hulamy@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/27 20:47:22 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 ** and increment its size untill it's solved
*/ */