| 542 | } |
| 543 | |
| 544 | static int Tcl_ops_getLoadFactor(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 545 | wrapper->resetCommandLine(argc, 1, argv); |
| 546 | |
| 547 | if (OPS_getLoadFactor() < 0) return TCL_ERROR; |
| 548 | |
| 549 | return TCL_OK; |
| 550 | } |
| 551 | |
| 552 | static int Tcl_ops_build(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 553 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected