| 526 | } |
| 527 | |
| 528 | static int Tcl_ops_reset(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 529 | wrapper->resetCommandLine(argc, 1, argv); |
| 530 | |
| 531 | if (OPS_resetModel() < 0) return TCL_ERROR; |
| 532 | |
| 533 | return TCL_OK; |
| 534 | } |
| 535 | |
| 536 | static int Tcl_ops_initialize(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 537 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected