| 422 | } |
| 423 | |
| 424 | static int Tcl_ops_setTime(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 425 | wrapper->resetCommandLine(argc, 1, argv); |
| 426 | |
| 427 | if (OPS_setTime() < 0) return TCL_ERROR; |
| 428 | |
| 429 | return TCL_OK; |
| 430 | } |
| 431 | |
| 432 | static int Tcl_ops_remove(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 433 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected