| 1078 | } |
| 1079 | |
| 1080 | static int Tcl_ops_version(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1081 | wrapper->resetCommandLine(argc, 1, argv); |
| 1082 | |
| 1083 | if (OPS_version() < 0) return TCL_ERROR; |
| 1084 | |
| 1085 | return TCL_OK; |
| 1086 | } |
| 1087 | |
| 1088 | static int Tcl_ops_setMaxOpenFiles(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1089 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected