| 166 | } |
| 167 | |
| 168 | static int Tcl_ops_model(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 169 | wrapper->resetCommandLine(argc, 1, argv); |
| 170 | |
| 171 | if (OPS_model() < 0) return TCL_ERROR; |
| 172 | |
| 173 | return TCL_OK; |
| 174 | } |
| 175 | |
| 176 | static int Tcl_ops_node(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 177 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected