create project with libft and basic thread program

This commit is contained in:
hugogogo
2021-12-11 12:46:06 +01:00
commit fc987249ac
7 changed files with 171 additions and 0 deletions

16
headers/philo.h Normal file
View File

@@ -0,0 +1,16 @@
#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