1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
philosopher/philo/include/philo_msg.h
2024-07-08 10:33:28 +02:00

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