This commit is contained in:
Camille Chauvet
2023-05-17 16:45:25 +00:00
commit 29ed24d567
619 changed files with 16119 additions and 0 deletions

14
Test/c08/ex04.c Normal file
View File

@ -0,0 +1,14 @@
int main(int ac, char **av)
{
t_stock_str *tab;
int i;
tab = ft_strs_to_tab(ac, av);
i = 0;
while (i < ac)
{
printf("size = %d, str = %s, copy = %s\n", tab[i].size, tab[i].str, tab[i].copy);
i++;
}
}