Files
42_INT_08_philosophers/headers/philo_proto.h
2022-01-09 12:23:22 +01:00

14 lines
179 B
C

#ifndef PHILO_PROTO_H
# define PHILO_PROTO_H
pthread_mutex_t mutex;
// init.c
t_philo *init(int ac, char **av, pthread_t **id);
// exec.c
void *philo_exec(void *arg);
#endif