Files
42_INT_08_philosophers/headers/philo_proto.h
2022-01-13 09:56:09 +01:00

12 lines
155 B
C

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