Files
42_INT_08_philosophers/headers/philo_proto.h
2022-01-13 08:53:27 +01:00

14 lines
172 B
C

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