Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / src / parser.h
1 #ifndef PARSERH_
2 #define PARSERH_
3
4 /* parser.c
5 ------------*/
6 void EiC_initparser(void);
7 void EiC_updateLocals(void);
8 void EiC_parse(environ_t * env);
9 void EiC_stmt(token_t * e1);
10 void EiC_assign_expr(token_t * e1);
11 void cond_expr(token_t * e1);
12 int EiC_GI(token_t * e1);
13
14 void EiCp_freeLabels(Label_t *lab);
15 Label_t * EiCp_addLabel(Label_t *lab, char *name, int loc, int chck);
16
17 extern int EiC_S_LEVEL;
18 extern unsigned int EiC_ASPOT;
19
20 #endif