/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_stock_str.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/08 16:54:59 by cacharle #+# #+# */ /* Updated: 2019/07/11 14:14:13 by cacharle ### ########.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; #endif