feat(09): finishing the exercice 01

This commit is contained in:
Raphael 2025-04-27 18:53:22 +02:00
parent bf81e18e76
commit 429896d153
3 changed files with 163 additions and 19 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/27 13:03:08 by rparodi #+# #+# */
/* Updated: 2025/04/27 15:39:50 by rparodi ### ########.fr */
/* Updated: 2025/04/27 17:13:10 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -24,3 +24,18 @@
#define CLR_WHITE "\033[0;37m"
#define CLR_GOLD "\033[38;5;220m"
#define CLR_GREY "\033[38;5;240m"
enum e_op
{
NUM = 0,
ADD,
SUB,
MUL,
DIV
};
typedef struct s_tok
{
e_op type;
int value;
} tok;