parsing_input v0 (Not working yet)

This commit is contained in:
Manzovince
2019-04-15 21:34:30 +02:00
parent 10901ad1a6
commit 95b96fc25f
4 changed files with 59 additions and 31 deletions

View File

@@ -6,30 +6,61 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/15 14:48:14 by vmanzoni #+# #+# */
/* Updated: 2019/04/15 20:14:43 by vmanzoni ### ########.fr */
/* Updated: 2019/04/15 21:33:52 by vmanzoni ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
/*
** Function that parse a file and return each tetrimino
** Function that parse a file and put each tetrimino in a linked list
*/
/*
void parse_input(char *input)
{
char *tetri;
int i;
//static t_fillist *list = NULL;
char **square;
int i;
int j;
int k;
i = 0;
while (input[i])
{
tetri[i] = input[i];
if (i != 0 && i%19 == 0)
j = 0;
while (j < 4)
{
i+2;
k = 0;
while (k < 4)
square[j][k++] = input[i++];
j++;
}
printf("print:\n%s\n", *square);
//add_to_list(square, &list);
while (input[i] == '\n')
i++;
}
}
/*
void parse_input(char *input)
{
//static t_fillist *list = NULL;
char square[19];
int i;
int j;
i = 0;
while (input[i])
{
j = 0;
while (j < 19)
square[j++] = input[i++];
square[19] = '\0';
printf("PRINT:\n%s\n", square);
//add_to_list(square, &list);
while (input[i] == '\n')
i++;
}
}
*/