0
0
This commit is contained in:
Guy Baconniere
2021-08-24 15:04:25 +02:00
parent 91d591215a
commit 4bba30bd82
14 changed files with 113 additions and 38 deletions

View File

@@ -0,0 +1,9 @@
#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