 |
NEURON
|
Go to the documentation of this file. 4 #define SYMITERALL {int i; Item *qs; Symbol *s;\ 5 for (i = 'A'; i <= 'z'; i++)\ 6 ITERATE(qs, symlist[i])\ 7 if ((s = SYM(qs))->type == NAME || s->type == PRIME) 9 #define SYMITER(arg1) {int i; Item *qs; Symbol *s;\ 10 for (i = 'A'; i <= 'z'; i++)\ 11 ITERATE(qs, symlist[i])\ 12 if ((s = SYM(qs))->type == arg1) 14 #define SYMITER_STAT {int i; Item *qs; Symbol *s;\ 15 for (i='A'; i <= 'z'; i++)\ 16 ITERATE(qs, symlist[i])\ 17 if ((s = SYM(qs))->subtype & STAT) 19 #define SYMITER_SUB(arg1) {int i; Item *qs; Symbol *s;\ 20 for (i='A'; i <= 'z'; i++)\ 21 ITERATE(qs, symlist[i])\ 22 if ((s = SYM(qs))->subtype & (arg1))