summaryrefslogtreecommitdiff
path: root/include/parser.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-05-03 00:20:43 +0000
committerPixel <Pixel>2001-05-03 00:20:43 +0000
commit6e5f6775d16e9730ccf1edbecf14da52d0ef134a (patch)
treea10da767d18359a1dcb1858391aa4c088b60f4c4 /include/parser.h
parentf6a2189fb85618d50de1edee30536641b0c376cf (diff)
Indentation
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/include/parser.h b/include/parser.h
index 1e7c0fd..f94bd34 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -5,21 +5,20 @@
#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
+ 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