25 lines
1 KiB
C
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
|