summaryrefslogtreecommitdiff
path: root/parser.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 /parser.h
parentab778d7f896b16f3e6f2b068c2b34d219723002b (diff)
Hop, gros bordel, plein de fichiers ajoutes et supprimes :)
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/parser.h b/parser.h
deleted file mode 100644
index 1e7c0fd..0000000
--- a/parser.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __PARSER_H__
-#define __PARSER_H__
-
-#define PILEOP_MAX 50
-#define PILECALL_MAX 50
-
-enum {
- OP_NEST,
- OP_PLUS,
- OP_MOINS,
- OP_EXP,
- OP_PLUS_UNARY,
- OP_MOINS_UNARY,
- OP_DIV,
- OP_MOD,
- OP_MUL,
- OP_ASSIGN,
- OP_LPAREN,
- OP_FUNC_CALL
-};
-
-
-void parse_line(char *);
-
-#endif