| 1019 | // () and [] expressions, any control construct can be defined trivially. |
| 1020 | |
| 1021 | void ifthen(char *cond, char *thenp, char *elsep) { commandret = executeret(cond[0]!='0' ? thenp : elsep); } |
| 1022 | bool __dummy_ifthen = addcommand("if", (void (*)())ifthen, "sss"); |
| 1023 | //COMMANDN(if, ifthen, "sss"); // CB seriously trips over this one ;) |
| 1024 |
nothing calls this directly
no test coverage detected