Files
42_INT_08_philosophers/headers/philo.h

17 lines
218 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;
} t_philo;
#endif