diff options
| author | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-09 10:23:25 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-09 10:23:25 +0200 |
| commit | 90076f97a1de6b60968e98d6c7a8b520ebda3c8e (patch) | |
| tree | 6c60a0fde7b2d8bc984845f6a412171df977e1dc /c08/ex04/ft_stock_str.h | |
| parent | 803d5e42138e1f0f69f6d8953aea5cd23f5b72ee (diff) | |
| download | piscine-90076f97a1de6b60968e98d6c7a8b520ebda3c8e.tar.gz piscine-90076f97a1de6b60968e98d6c7a8b520ebda3c8e.tar.bz2 piscine-90076f97a1de6b60968e98d6c7a8b520ebda3c8e.zip | |
c07/c08 start, c05 faster, better, stronger
Diffstat (limited to 'c08/ex04/ft_stock_str.h')
| -rw-r--r-- | c08/ex04/ft_stock_str.h | 23 |
1 files changed, 23 insertions, 0 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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 |
