put time.c and message.c into generic.c

This commit is contained in:
Hugo LAMY
2022-01-22 19:19:39 +01:00
parent cb615cb6b3
commit 82fef42d2a
4 changed files with 23 additions and 27 deletions

View File

@@ -7,11 +7,9 @@ t_philo *init(int ac, char **av, pthread_t **id);
// exec.c
void *philo_exec(void *arg);
// time.c
// generic.c
void init_time(t_philo *philo);
void update_time(t_philo *philo);
// message.c
void print_message(t_philo *philo, char *msg);
#endif