mirror of
https://github.com/Ladebeze66/philosophers.git
synced 2025-12-15 13:46:59 +01:00
24 lines
1.0 KiB
C
Executable File
24 lines
1.0 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/17 12:28:04 by fgras-ca #+# #+# */
|
|
/* Updated: 2023/10/17 12:29:50 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "philo.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
t_simulation sim;
|
|
|
|
initialize_simulation(&sim, argc, argv);
|
|
join_threads(&sim);
|
|
cleanup(&sim);
|
|
return (0);
|
|
}
|