| 310 | } |
| 311 | |
| 312 | static int Tcl_ops_patch(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 313 | wrapper->resetCommandLine(argc, 1, argv); |
| 314 | |
| 315 | if (OPS_Patch() < 0) return TCL_ERROR; |
| 316 | |
| 317 | return TCL_OK; |
| 318 | } |
| 319 | |
| 320 | static int Tcl_ops_layer(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 321 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected