12 lines
155 B
C
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
|
|
|