MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / convertTextToBinary

Function convertTextToBinary

SRC/tcl/commands.cpp:9938–9949  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9936
9937
9938int 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
9951int domainChange(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv)
9952{

Callers

nothing calls this directly

Calls 1

textToBinaryFunction · 0.50

Tested by

no test coverage detected