17 lines
218 B
C
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
|