summaryrefslogtreecommitdiff
path: root/include/pile.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pile.h')
-rw-r--r--include/pile.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/pile.h b/include/pile.h
index 4f6aeab..086d185 100644
--- a/include/pile.h
+++ b/include/pile.h
@@ -5,16 +5,16 @@
#define PILE_MAX 100
typedef enum type_elem {
- T_POLY,
- T_STRING,
- T_INT
+ T_POLY,
+ T_STRING,
+ T_INT
} type_elem;
typedef struct pile_elem {
- type_elem type;
- polynome poly;
- char *label;
- int val;
+ type_elem type;
+ polynome poly;
+ char *label;
+ int val;
} pile_elem;
void push_pile(char *st);
@@ -39,7 +39,7 @@ void affichage_pile(void);
void move_to_resultat_pile(void);
-char * pop_resultat(void);
+char *pop_resultat(void);
polynome return_last(int *valid);