| 558 | } |
| 559 | |
| 560 | static int Tcl_ops_print(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 561 | wrapper->resetCommandLine(argc, 1, argv); |
| 562 | |
| 563 | if (OPS_printModel() < 0) return TCL_ERROR; |
| 564 | |
| 565 | return TCL_OK; |
| 566 | } |
| 567 | |
| 568 | static int Tcl_ops_printA(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 569 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected