summaryrefslogtreecommitdiff
path: root/include/parser.h
blob: 30d626c433ee1e497de3f26cdea916cf64668623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __PARSER_H__
#define __PARSER_H__

#define PILEOP_MAX 50
#define PILECALL_MAX 50

enum {
  OP_NEST,
  OP_PLUS,
  OP_MOINS,
  OP_PLUS_UNARY,
  OP_MOINS_UNARY,
  OP_DIV,
  OP_MUL,
  OP_LPAREN,
  OP_FUNC_CALL,
  OP_DECAL,
  OP_DIRECT
};

void push_pile(char *);
void act_pile(int);

#endif