summaryrefslogtreecommitdiff
path: root/include/parser.h
blob: f0454640672cd6eaef33c2dbb9f2db8206a229cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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 parse_line(char *);

#endif