42/d09/ex11/ft_perso.h
2016-11-20 02:20:23 +02:00

25 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_perso.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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