22 lines
1 KiB
C
22 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* philo.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/08 20:43:51 by erey-bet #+# #+# */
|
|
/* Updated: 2023/03/12 16:54:49 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "philo.h"
|
|
|
|
void *philosopher(t_philo *philo)
|
|
{
|
|
write(1, "Hey i'm ", 8);
|
|
ft_putnbr_fd(philo->id, 1);
|
|
write(1, "\n", 1);
|
|
return (NULL);
|
|
}
|