summaryrefslogtreecommitdiff
path: root/include/parser.h
blob: 2772f1dab79256d2e46a52721d157decd0e59536 (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_MOD,
    OP_LPAREN,
    OP_FUNC_CALL,
    OP_DECAL,
    OP_DIRECT
};

void parse_line(char *);

#endif