summaryrefslogtreecommitdiff
path: root/graphs/piscine/evalexpr/src/evalexpr.h
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:20:05 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:20:05 +0200
commit3b27def26196cc96fe14fc8333d9e66189d6230f (patch)
tree3b1c1d0e0d4a924cbd605ed99a339dbb3218c5c4 /graphs/piscine/evalexpr/src/evalexpr.h
parent73c2b00a10c5786ddeeacc915e233fd4df1c9321 (diff)
fix: doublon de evalexpr et tinyprintf dans le graph de la piscineHEADmain
Diffstat (limited to 'graphs/piscine/evalexpr/src/evalexpr.h')
-rw-r--r--graphs/piscine/evalexpr/src/evalexpr.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/graphs/piscine/evalexpr/src/evalexpr.h b/graphs/piscine/evalexpr/src/evalexpr.h
deleted file mode 100644
index d440ae1..0000000
--- a/graphs/piscine/evalexpr/src/evalexpr.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef EVALEXPR_H
-#define EVALEXPR_H
-
-#include <stddef.h>
-
-#include "fifo.h"
-#include "stack.h"
-#include "stack_struct.h"
-
-enum token_type
-{
- NUMBER = 0,
- SUB = 1,
- ADD = 1,
- MOD = 2,
- DIV = 2,
- MUL = 2,
- EXP = 3,
- UN_PLUS = 4,
- UN_MINUS = 4,
- PAR_LEFT = 5,
- PAR_RIGHT = 5,
- WRONG_TOKEN = -1,
-};
-
-struct token
-{
- enum token_type type;
- int value;
-};
-
-// evalrpn
-int parse_number(const char *expr, size_t *offset);
-int get_operands(struct stack **s, int *op1, int *op2);
-int my_pow(int a, int b);
-int evalrpn(const char *expr, int *retval);
-
-// shunting yard
-int opcmp(struct token *op1, struct token *op2);
-enum token_type get_type(char op);
-int shunting_yard(const char *expr, char **rpn);
-
-#endif /* ! EVALEXPR_H */