| 1260 | extern int textToBinary(const char *inputFilename, const char *outputFilename); |
| 1261 | |
| 1262 | int OPS_convertBinaryToText() |
| 1263 | { |
| 1264 | if (OPS_GetNumRemainingInputArgs() < 2) { |
| 1265 | opserr << "ERROR incorrect # args - convertBinaryToText inputFile outputFile\n"; |
| 1266 | return -1; |
| 1267 | } |
| 1268 | |
| 1269 | const char *inputFile = OPS_GetString(); |
| 1270 | const char *outputFile = OPS_GetString(); |
| 1271 | |
| 1272 | return binaryToText(inputFile, outputFile); |
| 1273 | } |
| 1274 | |
| 1275 | int OPS_convertTextToBinary() |
| 1276 | { |
no test coverage detected