create chained list of struct philo and start thread

This commit is contained in:
hugogogo
2022-01-09 10:10:57 +01:00
parent 1c44397e61
commit 4b37e5392e
4 changed files with 65 additions and 51 deletions

View File

@@ -2,7 +2,7 @@
# define PHILO_PROTO_H
// init.c
t_philo *init(char **av);
t_philo *init(char **av, pthread_t *id);
#endif