mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
17 lines
478 B
C
17 lines
478 B
C
/**********************************
|
|
* C02 Expession Parsing Routines *
|
|
**********************************/
|
|
|
|
char term[255]; /*Term parsed from equation*/
|
|
|
|
char fnstck[MAXFNS][VARLEN+1]; //Function Call Stack
|
|
int fnscnt; //Number of Functions in Stack
|
|
|
|
int chkpst; //Check for Post-Operator
|
|
|
|
void prsidx(); //Parse Array Index
|
|
void prstrm(); //Parse Term in Expression
|
|
void prsxpr(char trmntr); //Parse Expression
|
|
|
|
|