0
0
This commit is contained in:
2021-08-25 19:38:13 +02:00
parent 411d51815d
commit 70fea93f32
3 changed files with 89 additions and 22 deletions

View File

@@ -1,9 +1,20 @@
#ifndef FT_STOCK__STR_H
# define FT_STOCK__STR_H
typedef struct s_stock_str
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_stock_str.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/25 10:17:09 by gbaconni #+# #+# */
/* Updated: 2021/08/25 12:05:50 by gbaconni ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_STOCK_STR_H
# define FT_STOCK_STR_H
typedef struct s_stock_str
{
int size;
char *str;
char *copy;
} t_stock_str;
int size;
char *str;
char *copy;
} t_stock_str;
#endif