| 214 | } |
| 215 | |
| 216 | static int Tcl_ops_nodalLoad(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 217 | wrapper->resetCommandLine(argc, 1, argv); |
| 218 | |
| 219 | if (OPS_NodalLoad() < 0) return TCL_ERROR; |
| 220 | |
| 221 | return TCL_OK; |
| 222 | } |
| 223 | |
| 224 | static int Tcl_ops_system(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 225 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected