| 886 | } |
| 887 | |
| 888 | static int Tcl_ops_convertBinaryToText(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 889 | wrapper->resetCommandLine(argc, 1, argv); |
| 890 | |
| 891 | if (OPS_convertBinaryToText() < 0) return TCL_ERROR; |
| 892 | |
| 893 | return TCL_OK; |
| 894 | } |
| 895 | |
| 896 | static int Tcl_ops_convertTextToBinary(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 897 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected