| 9936 | |
| 9937 | |
| 9938 | int convertTextToBinary(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 9939 | { |
| 9940 | if (argc < 3) { |
| 9941 | opserr << "ERROR incorrect # args - convertTextToBinary inputFile outputFile\n"; |
| 9942 | return -1; |
| 9943 | } |
| 9944 | |
| 9945 | const char *inputFile = argv[1]; |
| 9946 | const char *outputFile = argv[2]; |
| 9947 | |
| 9948 | return textToBinary(inputFile, outputFile); |
| 9949 | } |
| 9950 | |
| 9951 | int domainChange(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 9952 | { |
nothing calls this directly
no test coverage detected