-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.h
22 lines (19 loc) · 1.13 KB
/
messages.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* messages.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rblondia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/13 18:13:16 by rblondia #+# #+# */
/* Updated: 2022/01/24 10:04:27 by rblondia ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MESSAGES_H
# define MESSAGES_H
# define FORK_MSG "%lld %d has taken a fork\n"
# define EATING_MSG "%lld %d is eating\n"
# define SLEEPING_MSG "%lld %d is sleeping\n"
# define THINKING_MSG "%lld %d is thinking\n"
# define DIED_MSG "%lld %d died\n"
#endif