42_C_PISCINE/Test/c09/ex05/ft_stock_str.h

7 lines
77 B
C
Raw Permalink Normal View History

2023-05-17 12:45:25 -04:00
typedef struct s_stock_str
{
int size;
char *str;
char *copy;
} t_stock_str;