Files
42_INT_08_philosophers/headers/philo.h
2021-12-12 10:28:34 +01:00

18 lines
229 B
C

#ifndef PHILO_H
# define PHILO_H
# include "libft.h"
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <unistd.h>
# include <pthread.h>
typedef struct s_philo
{
char *str;
int nbr;
} t_philo;
#endif