22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* philos.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/27 11:33:17 by cchauvet #+# #+# */
|
|
/* Updated: 2023/04/27 11:33:17 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PHILOS_H
|
|
# define PHILOS_H
|
|
# include <stdbool.h>
|
|
# include "./data.h"
|
|
|
|
bool philos_init(t_data *data);
|
|
void philos_destroyer(t_data *data);
|
|
|
|
#endif
|