Comments Updated (no change in the code)

This commit is contained in:
Manzovince
2019-04-16 16:42:19 +02:00
parent 7dfe29b224
commit de86161fcd
2 changed files with 2 additions and 9 deletions

4
main.c
View File

@@ -6,7 +6,7 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */ /* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/12 13:20:48 by vmanzoni #+# #+# */ /* Created: 2019/02/12 13:20:48 by vmanzoni #+# #+# */
/* Updated: 2019/04/15 20:54:24 by vmanzoni ### ########.fr */ /* Updated: 2019/04/16 16:41:28 by vmanzoni ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@@ -24,12 +24,10 @@ int main(int argc, char **argv)
print_error("Error: Invalid file.\n"); print_error("Error: Invalid file.\n");
parse_input(input); parse_input(input);
/* /*
Transform input to tetriminos
Backtracking for smallest square Backtracking for smallest square
Transform tetriminos with letters Transform tetriminos with letters
Print result Print result
*/ */
//print_test(input);
} }
else else
print_error("Usage: Please submit a file.\n"); print_error("Usage: Please submit a file.\n");

View File

@@ -6,7 +6,7 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */ /* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/01 13:35:48 by vmanzoni #+# #+# */ /* Created: 2019/03/01 13:35:48 by vmanzoni #+# #+# */
/* Updated: 2019/04/15 00:11:22 by hulamy ### ########.fr */ /* Updated: 2019/04/16 16:41:46 by vmanzoni ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@@ -18,8 +18,3 @@ void ft_print_fillit()
} }
*/ */
void print_test(char *test)
{
write(1, test, strlen(test));
}