-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.h
More file actions
18 lines (16 loc) · 718 Bytes
/
Parser.h
File metadata and controls
18 lines (16 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PARSER_H
#define PARSER_H
#include "Graph.h"
#include "Functions.h"
int cell_parser(char *a, int C, int R, int start, int end, Graph *graph);
int valuefunc(char *a, int C, int R, int pos_equalto, int pos_end, int *arr, Graph *graph,Formula *formulaArray);
int arth_op(char *a, int C, int R, int pos_equalto, int pos_end, int *arr, Graph *graph,Formula *formulaArray);
int funct(char *a, int C, int R, int pos_equalto, int pos_end, int *arr, Graph *graph,Formula *formulaArray);
int parser(char *a, int C, int R, int *arr, Graph *graph,Formula *formulaArray);
extern int old_value;
extern int old_op_type;
extern int old_op_info1;
extern int old_op_info2;
extern int hasCycle;
extern int invalidRange;
#endif