| 1174 | } |
| 1175 | |
| 1176 | static int Tcl_ops_parameter(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1177 | wrapper->resetCommandLine(argc, 1, argv); |
| 1178 | |
| 1179 | if (OPS_Parameter() < 0) return TCL_ERROR; |
| 1180 | |
| 1181 | return TCL_OK; |
| 1182 | } |
| 1183 | |
| 1184 | static int Tcl_ops_addToParameter(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1185 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected