| 1513 | } |
| 1514 | |
| 1515 | void fxEchoInteger(txMachine* the, txInteger theInteger) |
| 1516 | { |
| 1517 | char aBuffer[256]; |
| 1518 | |
| 1519 | fxIntegerToString(the, theInteger, aBuffer, sizeof(aBuffer)); |
| 1520 | fxEcho(the, aBuffer); |
| 1521 | } |
| 1522 | |
| 1523 | void fxEchoInstance(txMachine* the, txSlot* theInstance, txInspectorNameList* theList) |
| 1524 | { |
no test coverage detected