7 lines
77 B
C
7 lines
77 B
C
typedef struct s_stock_str
|
|
{
|
|
int size;
|
|
char *str;
|
|
char *copy;
|
|
} t_stock_str;
|