init
This commit is contained in:
14
Test/c08/ex04.c
Normal file
14
Test/c08/ex04.c
Normal 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++;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user