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