summaryrefslogtreecommitdiff
path: root/include/pile.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-04-28 21:40:25 +0000
committerPixel <Pixel>2001-04-28 21:40:25 +0000
commit3b37a00a4be251f87e543d269489cb7a989425d5 (patch)
tree51aedcb4d1627743d6e240266c58a67cf6ae0d67 /include/pile.h
parentab778d7f896b16f3e6f2b068c2b34d219723002b (diff)
Hop, gros bordel, plein de fichiers ajoutes et supprimes :)
Diffstat (limited to 'include/pile.h')
-rw-r--r--include/pile.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/pile.h b/include/pile.h
new file mode 100644
index 0000000..02ad149
--- /dev/null
+++ b/include/pile.h
@@ -0,0 +1,36 @@
+#ifndef __PILE_H__
+#define __PILE_H__
+#include "polynom.h"
+
+#define PILE_MAX 100
+
+typedef enum type_elem {
+ T_POLY,
+ T_STRING,
+ T_INT
+} type_elem;
+
+typedef struct pile_elem {
+ type_elem type;
+ polynome poly;
+ char *label;
+ int val;
+} pile_elem;
+
+void push_pile(char *st);
+
+void push_pile_poly(polynome poly);
+
+void push_pile_int(int val);
+
+void push_pile_string(char *st);
+
+pile_elem pop_pile(unsigned int count);
+
+char *affichage_level_1(void);
+
+int is_mute(char *st);
+
+void act_pile(int func);
+
+#endif