| 1355 | } |
| 1356 | |
| 1357 | void fxEchoCharacter(txMachine* the, char theCharacter) |
| 1358 | { |
| 1359 | char c[2]; |
| 1360 | c[0] = theCharacter; |
| 1361 | c[1] = 0; |
| 1362 | fxEchoString(the, c); |
| 1363 | } |
| 1364 | |
| 1365 | void fxEchoException(txMachine* the, txSlot* exception) |
| 1366 | { |
no test coverage detected