| 1297 | } |
| 1298 | |
| 1299 | int OPS_ResetCurrentInputArg(int cArg) |
| 1300 | { |
| 1301 | if (cArg == 0) { |
| 1302 | opserr << "WARNING can't reset to argv[0]\n"; |
| 1303 | return -1; |
| 1304 | } |
| 1305 | if (cmds == 0) return 0; |
| 1306 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1307 | interp->resetInput(cArg); |
| 1308 | return 0; |
| 1309 | } |
| 1310 | |
| 1311 | UniaxialMaterial *OPS_GetUniaxialMaterial(int matTag) |
| 1312 | { |
no test coverage detected