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

View File

@ -0,0 +1,6 @@
typedef struct s_stock_str
{
int size;
char *str;
char *copy;
} t_stock_str;

12
Test/c09/ex05/main.c Normal file
View File

@ -0,0 +1,12 @@
#include "ft_stock_str.h"
void ft_show_tab(struct s_stock_str *par);
struct s_stock_str *ft_strs_to_tab(int ac, char **av);
int main(int ac, char **av)
{
t_stock_str *tab;
tab = ft_strs_to_tab(ac, av);
ft_show_tab(tab);
}