From 2bc94312042100432ec332abd3c00104d0d095a2 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 9 Jul 2019 10:23:25 +0200 Subject: c07/c08 start, c05 faster, better, stronger --- c08/ex04/ft_stock_str.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 c08/ex04/ft_stock_str.h (limited to 'c08/ex04/ft_stock_str.h') diff --git a/c08/ex04/ft_stock_str.h b/c08/ex04/ft_stock_str.h new file mode 100644 index 0000000..ccadd2f --- /dev/null +++ b/c08/ex04/ft_stock_str.h @@ -0,0 +1,23 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_stock_str.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/08 16:54:59 by cacharle #+# #+# */ +/* Updated: 2019/07/08 16:56:02 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 -- cgit