23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* philo_msg.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/07/07 17:50:46 by adjoly #+# #+# */
|
|
/* Updated: 2024/07/07 17:53:53 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PHILO_MSG_H
|
|
# define PHILO_MSG_H
|
|
|
|
# define EATING_MSG "is eating\n"
|
|
# define THINK_MSG "is thinking\n"
|
|
# define SLEEP_MSG "is sleeping\n"
|
|
# define DIED_MSG "died\n"
|
|
# define FORK_MSG "has taken a fork\n"
|
|
|
|
#endif
|