| 150 | } |
| 151 | |
| 152 | static int Tcl_ops_wipe(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 153 | wrapper->resetCommandLine(argc, 1, argv); |
| 154 | |
| 155 | if (OPS_wipe() < 0) return TCL_ERROR; |
| 156 | |
| 157 | return TCL_OK; |
| 158 | } |
| 159 | |
| 160 | static int Tcl_ops_wipeReliability(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 161 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected