/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_perso.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/04 04:51:15 by gtertysh #+# #+# */ /* Updated: 2016/11/04 05:13:52 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_PERSO_H # define FT_PERSO_H typedef struct s_perso { char *name; float life; int age; char *profession; } t_perso; #endif