10 lines
139 B
C
10 lines
139 B
C
#ifndef FT_STOCK__STR_H
|
|
# define FT_STOCK__STR_H
|
|
typedef struct s_stock_str
|
|
{
|
|
int size;
|
|
char *str;
|
|
char *copy;
|
|
} t_stock_str;
|
|
#endif
|