| 118 | } |
| 119 | |
| 120 | static int Tcl_ops_getStrain(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 121 | wrapper->resetCommandLine(argc, 1, argv); |
| 122 | |
| 123 | if (OPS_getStrain() < 0) return TCL_ERROR; |
| 124 | |
| 125 | return TCL_OK; |
| 126 | } |
| 127 | |
| 128 | static int Tcl_ops_getStress(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 129 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected