create project with libft and basic thread program
This commit is contained in:
16
headers/philo.h
Normal file
16
headers/philo.h
Normal 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
|
||||
Reference in New Issue
Block a user