1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-21 14:29:31 +00:00
C02/expr.h

17 lines
478 B
C
Raw Permalink Normal View History

/**********************************
* 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
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