| 144 | } PAR; |
| 145 | |
| 146 | typedef struct _AstroexpressionInternal { |
| 147 | TRIE rgsTrieFun; // Trie tree of tokens for AstroExpression parsing |
| 148 | PAR *rgparVar; // List of custom variables |
| 149 | int cparVar; // Size of list of custom variables |
| 150 | char **rgszExpMacro; // List of AstroExpression macros |
| 151 | int cszExpMacro; // Size of list of AstroExpression macros |
| 152 | char **rgszExpStr; // List of AstroExpression strings |
| 153 | int cszExpStr; // Size of list of AstroExpression strings |
| 154 | } XI; |
| 155 | |
| 156 | XI xi = {NULL, NULL, 0, NULL, 0, NULL, 0}; |
| 157 |
nothing calls this directly
no outgoing calls
no test coverage detected