| 1804 | } |
| 1805 | |
| 1806 | void fxEchoNumber(txMachine* the, txNumber theNumber) |
| 1807 | { |
| 1808 | char aBuffer[256]; |
| 1809 | |
| 1810 | fxNumberToString(the, theNumber, aBuffer, sizeof(aBuffer), 0, 0); |
| 1811 | fxEcho(the, aBuffer); |
| 1812 | } |
| 1813 | |
| 1814 | void fxEchoPathLine(txMachine* the, txString thePath, txInteger theLine) |
| 1815 | { |
no test coverage detected