1
0

」 feat: finished ex01

This commit is contained in:
2025-06-03 15:57:15 +02:00
parent de9bd7ed8d
commit 6b00e95da9
5 changed files with 193 additions and 0 deletions

30
ex01/RPN.hpp Normal file
View File

@ -0,0 +1,30 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* RPN.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/03 12:00:35 by adjoly #+# #+# */
/* Updated: 2025/06/03 12:09:55 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
#include <iostream>
#include <stack>
#define range(x) \
x.begin(); \
it != x.end(); \
it++
#define auto __auto_type
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
void rpn(char *);