2017-04-22 18:39:52 +00:00
|
|
|
/**********************************
|
|
|
|
* C02 Expession Parsing Routines *
|
|
|
|
**********************************/
|
|
|
|
|
|
|
|
char term[255]; /*Term parsed from equation*/
|
|
|
|
|
2017-05-01 01:17:50 +00:00
|
|
|
char fnstck[MAXFNS][VARLEN+1]; //Function Call Stack
|
|
|
|
int fnscnt; //Number of Functions in Stack
|
|
|
|
|
2017-06-27 00:16:23 +00:00
|
|
|
int chkpst; //Check for Post-Operator
|
|
|
|
|
2017-04-22 18:39:52 +00:00
|
|
|
void prsidx(); //Parse Array Index
|
|
|
|
void prstrm(); //Parse Term in Expression
|
|
|
|
void prsxpr(char trmntr); //Parse Expression
|
|
|
|
|
2017-05-01 01:17:50 +00:00
|
|
|
|